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
update_many
The data API offers the methods update_many that allows to update a subset of properties for different record matching a criteria
Documentation https://docs.datastax.com/en/astra/astra-db-vector/api-reference/data-api-commands.html#update-many-matching-documents-with-set
Sample:
{ "updateMany": { "filter": {"status" : "active" }, "update" : {"$set" : { "status" : "inactive"}} } }
As of today this feature is not exposed in the astrapy.
The text was updated successfully, but these errors were encountered:
Fix #203 : Implementation for update_many
089dcb8
Fix #203 : Implementation for update_many (#204)
240f0bf
* Fix #203 : Implementation for update_many * Update test_db_dml.py
erichare
Successfully merging a pull request may close this issue.
The data API offers the methods
update_many
that allows to update a subset of properties for different record matching a criteriaDocumentation
https://docs.datastax.com/en/astra/astra-db-vector/api-reference/data-api-commands.html#update-many-matching-documents-with-set
Sample:
As of today this feature is not exposed in the astrapy.
The text was updated successfully, but these errors were encountered: