Skip to content

Commit ea3eed8

Browse files
Merge #536
536: fix delete documents by filter documentation r=ellnix a=the-sinner # Pull Request ## Related issue Fixes #535 ## What does this PR do? - fixes the delete documents by filter documentation ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Shalabh Agarwal <[email protected]>
2 parents 4d17d24 + 6e1823b commit ea3eed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ get_documents_post_1: |-
1010
fields: ['title', 'genres', 'rating', 'language']
1111
)
1212
delete_documents_by_filter_1: |-
13-
client.index('movies').get_documents(filter: 'genres = action OR genres adventure')
13+
client.index('movies').delete_documents(filter: 'genres = action OR genres = adventure')
1414
get_documents_1: |-
1515
client.index('movies').get_documents(limit: 2, filter: 'genres = action')
1616
getting_started_faceting: |-

0 commit comments

Comments
 (0)