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
Still, `~` is useful to negate groups of expressions
242
242
surrounded by parentheses.
243
+
244
+
## E9
245
+
246
+
> Could not resolve field name.
247
+
248
+
Redis OM encountered a query expression where it could not determine the field name. This usually indicates a malformed query. Make sure your query starts with a model field, like `Model.field_name == value`.
249
+
250
+
## E10
251
+
252
+
> Could not resolve field type.
253
+
254
+
Redis OM could not determine the type of a field in your query. This might happen if the field annotation is missing or invalid. Ensure your model fields have proper type annotations.
255
+
256
+
## E11
257
+
258
+
> Could not resolve field info.
259
+
260
+
Redis OM could not find field metadata for a field in your query. This is an internal error that shouldn't normally occur. If you see this, please file an issue on GitHub.
261
+
262
+
## E12
263
+
264
+
> List and tuple fields can only contain strings.
265
+
266
+
When indexing a `List` or `Tuple` field in a JsonModel, the elements must be strings. For example:
If you need to store lists of other types, you can still do so without indexing them.
282
+
283
+
## E13
284
+
285
+
> List and tuple fields cannot be indexed for full-text search.
286
+
287
+
You cannot use `full_text_search=True` on a `List` or `Tuple` field. List fields are indexed as TAG fields, which support exact matching but not full-text search.
0 commit comments