-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
Constraints/Restrictions not working for LiveQuery #92
Comments
@flovilmart are they supposed to work? Were they added to live query server? Do we need to do something in the live query client to support those constraints? Thanks |
Same for #85 |
Quoted from the link
I am assuming lt = lessThan, lte = lessThanOrEqualTo, gt = greaterThan, etc.? It would really be helpful if these were added. Also regarding whereNotEqualTo, it was answered that it's not part of the constraints supported so it will be ignored |
Can you post logs VERBOSE=1? Does live query works for you at all? |
@dplewis there you go: (hope I am doing this right)
Some of the constraints work for me, such as a single "whereEqualTo(...);". Also, it's pretty strange that while the LiveQuery does not consider some of the constraints specified, these constraints are applied to the "query" variable returned in the callback |
Although it is mentioned in link below that the follow constraints work for LiveQuery, it doesn't.
whereLessThan, whereGreaterThan, whereLessThanOrEqualTo, whereGreaterThanOrEqualTo
parseQuery.whereLessThan("key", value);
2 equalTo constraints on 2 different keys
query.whereEqualTo("keyA", parseObject1);
query.whereEqualTo("keyB", parseObject2);
Link: https://github.com/parse-community/parse-server/wiki/Parse-LiveQuery-Protocol-Specification#subscribe-message
The text was updated successfully, but these errors were encountered: