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
In Kotlin I can write:
op.delete<User>().from("users").matching(Query.empty()).all()
op.delete<User>().matching(Query.empty()).all()
But not:
op.delete<User>().from("users").all()
op.delete<User>().all()
Same issue for update options.
The text was updated successfully, but these errors were encountered:
That's an oversight on our end that we should address.
Sorry, something went wrong.
#410 - Make it possible to write delete/update operations without usi…
07be001
…ng matching. Fluent operations now allow statement execution without the need to specify a Query object allowing for shorter statements.
0017ca7
That change is in place now.
No branches or pull requests
In Kotlin I can write:
op.delete<User>().from("users").matching(Query.empty()).all()
op.delete<User>().matching(Query.empty()).all()
But not:
op.delete<User>().from("users").all()
op.delete<User>().all()
Same issue for update options.
The text was updated successfully, but these errors were encountered: