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 would be nice to allow and or and and logic on the fields part. Example
or
and
get all User where bank_account | withdrawn_amount | deposited_amount > 100k
which would translate in
select * from users where (bank_account > 100000 or withdrawn_amount > 100000 or deposited_amount > 100000)
And
get all User where bank_account & withdrawn_amount & deposited_amount > 100k
select * from users where (bank_account > 100000 and withdrawn_amount > 100000 and deposited_amount > 100000)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice to allow and
or
andand
logic on the fields part. Examplewhich would translate in
And
which would translate in
The text was updated successfully, but these errors were encountered: