Closed
Description
We have not migrated and are still using a combination of development and production databases on Parse. We have an array of pointers column on our _User class. It used to be that calling Parse.addUnique("students", StudentObj); would save a reference pointer to the students but now the server seems to be populating the array with the full objects of each "student" _User class.
Additionally, this is causing a series of problems because calling "include" on _User for the students array of pointers is now simply returning an assorted array with some rows only having an ObjectID and some having a full (but out of date) object. What happened to the proper reference pointer logic?