We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c19be commit 738f5a4Copy full SHA for 738f5a4
1 file changed
src/typesense/types/document.py
@@ -830,11 +830,13 @@ class DeleteQueryParameters(typing.TypedDict):
830
Parameters for deleting documents.
831
832
Attributes:
833
+ truncate (str): Truncate the collection, keeping just the schema.
834
filter_by (str): Filter to apply to documents.
835
batch_size (int): Batch size for deleting documents.
836
ignore_not_found (bool): Ignore not found documents.
837
"""
838
839
+ truncate: typing.NotRequired[bool]
840
filter_by: str
841
batch_size: typing.NotRequired[int]
842
ignore_not_found: typing.NotRequired[bool]
0 commit comments