When retrieving PFObjects using PFQuery, it does not return completed objects

When retrieving PFObjects using PFQuery, it does not return completed objects. Rebuilt objects have only a few fields. But for real objects about 12 fields, it returns only 7 fields.

+4
source share
1 answer

When you retrieve PFObjects, it returns the entire PFObjects. But the problem is that it will not return fields in which there are no values. PFObjects returns all fields in which there are values.

0
source

All Articles