We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It will be very useful to combine complex queries using Q() like it made in Django.
Examples: OR
client.resources('Slot').search(Q(schedule='id1') | Q(schedule='id2'))
transforms to =>
client.resources('Schedule').search(actor='id1,id2')
and generates =>
?schedule=id1,id2
AND
client.resources('Schedule').search(Q(actor='id1') & Q(actor='id2'))
client.resources('Schedule').search(actor=['id1', 'id2'])
?actor=id1&actor=id2
The text was updated successfully, but these errors were encountered:
Let's increase the priority
Sorry, something went wrong.
ruscoder
No branches or pull requests
It will be very useful to combine complex queries using Q() like it made in Django.
Examples:
OR
transforms to =>
and generates =>
AND
transforms to =>
and generates =>
The text was updated successfully, but these errors were encountered: