Hello.
We have a Repeater field (divisions) containing only one field: id (string) on a collection.
We have a Postgres database.
We try to filter on this id like this:
const filter: Record<string, unknown> = {
status: { _eq: 'published' },
divisions: {
_some: {
id: {
_eq: divisionId,
},
},
},
};
This has no effect whatsoever.
We have tried deep, alias, json with the same result.
Is there any possibilities to filter on a json field?
Thanks in advance