i have a "Station" object, it contains a column named "imagePointers", the array is populated as such:
[{"__type":"Pointer","className":"Image","objectId":"4Xtj32BOQy"},{"__type":"Pointer","className":"Image","objectId":"7DHCt7cx0O"}]
The pointers point at another object named Image, but they are stored as an array at the station object.
In iOS i query the station object as such:
PFGeoPoint *geoPoint = [PFGeoPoint geoPointWithLatitude:coordinate.latitude
longitude:coordinate.longitude];
[query whereKey:@"location" nearGeoPoint: geoPoint];
[query includeKey:@"imagePointers.Image"];
//[query orderByDescending:@"createdAt"];
return query;
When i receive the station object, the imagePointers field is empty? Completely empty