Hi there,
I’m trying to map two users and adding a few predicates mentorId, menteeId, and skillPublicId as String. But when I fetch the results, I’m getting output with a timestamp like this,
{
"data": {
"my": [
{
"company.userlist": [
{
"username": "somename",
"publicId": "0001",
"collaboration": [
{
"username": "mark",
"publicId": "0002",
"collaboration|menteeId": "0002-01-01T00:00:00Z",
"collaboration|mentorId": "0001-01-01T00:00:00Z",
"collaboration|skillPublicId": "1000-01-01T00:00:00Z"
}
]
}
]
}
]
}
Could someone help me to remove this timestamp (-01-01T00:00:00Z) in the results, please?
Thanks!