-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Parse Server / IOS - include Key has different results after migration #677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
If you can troubleshoot this further, that would be great. Run the server with the environment variable VERBOSE=1 and capture the request for the query. |
I'm having this problem too, "includeKey" on a PFRelation query returns pointers with no data. If point back from my Heroku Parse Server instance to api.parse.com then the same query works fine on the same database. |
My problem turned out to be a data related problem with one record which was created in a previous version. I recreated this record and it worked ok
|
Same problem as @jackdewhurst. Query returns pointers with no data despite using 'includeKey'. |
This issue is getting old, and it seems like some people have solved this issue. If you are still seeing this problem, can you open a new issue and include some consistent repro steps? |
Hello, Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object and option to allow fragments not set." UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.} Please help me out here Thanks |
The following query works prior to migration but not post migration in MongoLabs for selected records only
PFQuery *drillResultsQuery = [GradingDrillResult query];
[drillResultsQuery whereKey:@"parentEvent" equalTo:self.currentEvent];
[drillResultsQuery includeKey:@"parentDrill"]; //returns no data in the object
[drillResultsQuery includeKey:@"parentPerson"]; // works ok
[drillResultsQuery includeKey:@"parentEventInvite"]; // works ok
[drillResultsQuery orderByAscending:@"firsttName,lastName,parentDrillType"];
Using the parse data browser the link works ok and also in mongoldb the id appears correct. However, the parentDrill data has 0 data elements when queried via parse server and mongoldb
The text was updated successfully, but these errors were encountered: