Open
Description
Error: Query a relation: Must specify a ParseObject class name when creating a ParseQuery.
Unity: We are using 4.6.7 but it also happens on 4.6.8.
Parse plugin 1.6.1 for Unity.
Xcode 6.4
When Querying a relation, we started getting this error after updating parse.
- It only happens on iOS, and not in the Unity editor. Query also works in API console.
- Did not happen in older version of Parse.
We are querying a relation in this manner:
var FBFriendsRelation = ParseUser.CurrentUser.GetRelation ("FBFriends");
if (FBFriendsRelation != null) {
ParseQuery q = FBFriendsRelation.Query;
In Xcode, the error happens on the final line. We tried this with a stub project that only does this query, and get the same result.