Skip to content

Commit 046cdb8

Browse files
committed
Update protos to switch to optional string
1 parent a4a7917 commit 046cdb8

13 files changed

Lines changed: 159 additions & 160 deletions

File tree

weaviate/collections/grpc/query.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,6 @@ def __create_request(
478478
limit=limit,
479479
offset=offset,
480480
after=str(after) if after is not None else "",
481-
after_present=after is not None,
482481
autocut=autocut,
483482
properties=self._translate_properties_from_python_to_grpc(
484483
return_properties_parsed, return_references_parsed

weaviate/proto/v1/v4216/v1/base_pb2.py

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

weaviate/proto/v1/v4216/v1/base_pb2.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ class Filters(_message.Message):
130130
OPERATOR_IS_NULL: _ClassVar[Filters.Operator]
131131
OPERATOR_CONTAINS_ANY: _ClassVar[Filters.Operator]
132132
OPERATOR_CONTAINS_ALL: _ClassVar[Filters.Operator]
133+
OPERATOR_CONTAINS_NONE: _ClassVar[Filters.Operator]
133134
OPERATOR_UNSPECIFIED: Filters.Operator
134135
OPERATOR_EQUAL: Filters.Operator
135136
OPERATOR_NOT_EQUAL: Filters.Operator
@@ -144,6 +145,7 @@ class Filters(_message.Message):
144145
OPERATOR_IS_NULL: Filters.Operator
145146
OPERATOR_CONTAINS_ANY: Filters.Operator
146147
OPERATOR_CONTAINS_ALL: Filters.Operator
148+
OPERATOR_CONTAINS_NONE: Filters.Operator
147149
OPERATOR_FIELD_NUMBER: _ClassVar[int]
148150
ON_FIELD_NUMBER: _ClassVar[int]
149151
FILTERS_FIELD_NUMBER: _ClassVar[int]

0 commit comments

Comments
 (0)