You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We used to successfully order elements in the query by the number filed of nested object. We just realised it does not work anymore.
Here is the example of the code, it is not the exact code, just the example:
let user: User //User that we're looking for
let query = PFQuery(className: "Club")
query.whereKey("user", equalTo: user)
query.includeKey("user")
query.order(byDescending: "user.someNumber") // We want to order by someNumber which is actually field of the user object
query.findObjectsInBackground...
Are we doing something wrong?
Is this intended for some reason, or just a bug?
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. If you believe it should stay open, please let us know! As always, we encourage contributions, check out the Contributing Guide
We used to successfully order elements in the query by the number filed of nested object. We just realised it does not work anymore.
Here is the example of the code, it is not the exact code, just the example:
Are we doing something wrong?
Is this intended for some reason, or just a bug?
The text was updated successfully, but these errors were encountered: