I am receiving following json from server with pointer data type
[
{
"abc":{"__type":"Pointer","className":"ABC","objectId":"iHHyf1Rerw"}
}
]
now how i can fetch other fields from ABC class name. I have tried to fetch with following way:
ParseObject obj = parseObject.get(position).getParseObject("abc");
now i am trying to fetch
obj .getString("colname")
but i am getting colname not exists
