You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***simint:** make `simulator_integration_external_id` optional on runs, routines and routine revisions ([#2420](https://github.com/cognitedata/cognite-sdk-python/issues/2420)) ([a18702b](https://github.com/cognitedata/cognite-sdk-python/commit/a18702b10e940bec9684589c86bd375a23613258))
22
+
***workflow-triggers:** add pause and resume functionality ([#2413](https://github.com/cognitedata/cognite-sdk-python/issues/2413)) ([1afc695](https://github.com/cognitedata/cognite-sdk-python/commit/1afc6951e26c9b1c59a63aca5a0b69fd19d6473e))
23
+
24
+
25
+
### Bug Fixes
26
+
27
+
* add warning when operator is not passed to instances/search ([#2390](https://github.com/cognitedata/cognite-sdk-python/issues/2390)) ([8f8af02](https://github.com/cognitedata/cognite-sdk-python/commit/8f8af0283f61015f40723e91a1a7bc13b58e861a))
limit (int | None): Maximum number of instances to return. Defaults to 25. Will return the maximum number
1167
1168
of results (1000) if set to None, -1, or math.inf.
1168
1169
sort (Sequence[InstanceSort | dict] | InstanceSort | dict | None): How you want the listed instances information ordered.
1169
-
operator (Literal['AND', 'OR']): Controls how multiple search terms are combined when matching documents. OR (default): A document matches if it contains any of the query terms in the searchable fields. This typically returns more results but with lower precision. AND: A document matches only if it contains all of the query terms across the searchable fields. This typically returns fewer results but with higher relevance.
1170
+
operator (Literal['AND', 'OR'] | None): Controls how multiple search terms are combined when matching documents.
1171
+
AND: A document matches only if it contains all of the query terms across the searchable fields. This typically
1172
+
returns fewer results but with higher relevance. OR: A document matches if it contains any of the query terms in the searchable fields.
1173
+
This typically returns more results but with lower precision. Note: If not specified, will default to the API default, which will change from
1174
+
'OR' to 'AND' sometime in Q1 2027.
1170
1175
1171
1176
Returns:
1172
1177
NodeList[T_Node] | EdgeList[T_Edge]: Search result with matching nodes or edges.
1173
1178
1174
1179
Examples:
1175
1180
1176
-
Search for Arnold in the person view in the name property:
1181
+
Search for equipment containing both 'centrifugal' and 'pump' in the description:
1177
1182
1178
1183
>>> from cognite.client import CogniteClient
1179
1184
>>> from cognite.client.data_classes.data_modeling import ViewId
0 commit comments