I have something like this
ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("MyTable");
query.include("tag");
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> objectList, ParseException e) {
if (e == null) {
for(ParseObject objects : objectList) {
Log.d(TAG, "parse object name : " + objects.getString("name"));
Log.d(TAG, "tag name : " + objects.getString("tag"));
}
}
}
}
for each row, I have columns like String name and Pointer<Tag>.
In LogCat, it prints out names correctly, but it prints out null for each tag.
parse object name : Events
tag name : null
I don't actually need to get pointer, but all I need is to get the tag in String format (I can't modify the table to make the column String now).
What can I do to be able to get the Pointer as String format?
