-
Notifications
You must be signed in to change notification settings - Fork 33
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
Support query combination "and" #376
Labels
Comments
9 tasks
+1 for CMS references filter support. We need combine the |
carmenlau
added
workflow/Milestone6.1
workflow/Next Sprint
and removed
workflow/Milestone6.1
labels
May 23, 2018
carmenlau
added
workflow/Milestone6.1
workflow/Next Sprint
and removed
workflow/Next Sprint
workflow/Milestone6.1
labels
May 23, 2018
no change needed in skygeario/skygear-sdk-ios since
is the same as
|
@Steven-Chan I just merged the android SDK update, would like to know is there any update for JS SDK? Cannot find the relates PR :P |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, queries are combined by
AND
by default, and can combine two queries withOR
through.or(q1, q2)
. However, since there is no.and(q1, q2)
, some use cases are not covered or become over-complicated.q1 AND (q2 OR q3): not supported
(q1 OR q2) AND (q3 OR q4) AND q5: not supported
(q1 OR q2) AND (q3 OR q4) AND ... AND qN: not supported
The text was updated successfully, but these errors were encountered: