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
Hi, i'm evaluating this helper and wonder if there exists a way to query JSONB data with unknown properties/structure, e.g.: {"name": "foo", "val": 1}
and can use it like this: filters.put("properties->>name_eq", "foo");
Otherwise is there a way to append custom filters without the need to use entity-class and @searchable annotation?
The text was updated successfully, but these errors were encountered:
Hi, I'll answer you in order:
JSONB is currently not supported. It probably will be in the future.
This library only makes sense to be used if you use entities.
Description
Hi, i'm evaluating this helper and wonder if there exists a way to query JSONB data with unknown properties/structure, e.g.:
{"name": "foo", "val": 1}
and can use it like this:
filters.put("properties->>name_eq", "foo");
Otherwise is there a way to append custom filters without the need to use entity-class and @searchable annotation?
The text was updated successfully, but these errors were encountered: