-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
- Add
get_documents_post_1
v1.2: Delete and get documents by filter documentation#2421
curl \
-X POST http://localhost:7700/indexes/books/documents/fetch \
-H 'Content-Type: application/json' \
--data-binary '{
"filter": "(rating > 3 AND (genres = Adventure OR genres = Fiction)) AND language = English",
"fields": ["title", "genres", "rating", "language"],
"limit": 3
}'
- Add
delete_documents_by_filter_1
v1.2: Delete and get documents by filter documentation#2421
curl \
-X POST http://localhost:7700/indexes/movies/documents/delete \
-H 'Content-Type: application/json' \
--data-binary '{
"filter": "genres = action OR genres = adventure"
}'
- Update
get_documents_1
v1.2: Delete and get documents by filter documentation#2421
curl \
-X GET 'http://localhost:7700/indexes/movies/documents?limit=2&filter=genres=action'
- Rename
delete_documents_1
todelete_documents_by_batch_1
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation