Skip to content

Commit f50ff6d

Browse files
committed
Add missing simple queries in README.md
1 parent 162d57e commit f50ff6d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,15 @@ my_collection.within(latitude=100, longitude=20, radius=15)
204204

205205
# Return all documents near a given coordinate (requires geo-index)
206206
my_collection.near(latitude=100, longitude=20)
207+
208+
# Return all documents with fulltext match
209+
my_collection.fulltext("key", "foo,|bar")
210+
211+
# Look up documents by keys
212+
my_collection.lookup_by_keys(["key1", "key2", "key3"])
213+
214+
# Delete documents by keys
215+
my_collection.remove_by_keys(["key1", "key2", "key3"])
207216
```
208217

209218
AQL Functions

0 commit comments

Comments
 (0)