We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5911f1a commit fbbcaf1Copy full SHA for fbbcaf1
1 file changed
README.md
@@ -261,8 +261,8 @@ col = ndb.collection('custom_collection')
261
# Delete 3 vectors, 'foo', 'bar', and 'baz'.
262
col.delete_vectors(vector_ids=['foo', 'bar', 'baz'])
263
264
-# Delete all vectors created before Sunday, January 1, 2023 12:00:00 AM GMT
265
-col.delete_vectors(metadata_filter="created_on < 1672531200")
+# Delete all vectors where 'int_col' is specified, and the value is less than 3.
+col.delete_vectors(metadata_filter="int_col < 3")
266
267
# Delete all vectors in the collection
268
col.delete_vectors(delete_all=True)
0 commit comments