-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
[Unity] Relation Query Fails with error on iOS. #60
Labels
Comments
I think this is the same as #72. |
Yep, I think you're correct. Currently my unity installation isn't fully working so I can't test ATM, but I'm going to close this for now. Feel free to re-open it if the problem persists. |
@richardjrossiii still occurring on 1.7.0. |
I'll take another look at this. |
I'm getting this error as well when switching to IL2CPP. With Mono 2.0, relations work properly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
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.
The text was updated successfully, but these errors were encountered: