Hi there,
I have setted up a tags field. But when i try to filter on it, the API will always return the following error:
{
"errors": [
{
"message": "Invalid query. \"json\" field type does not contain the \"_eq\" filter operator.",
"extensions": {
"reason": "\"json\" field type does not contain the \"_eq\" filter operator",
"code": "INVALID_QUERY"
}
}
]
}
I already tried “_in”:
[
{
"message": "Invalid query. \"json\" field type does not contain the \"_in\" filter operator.",
"extensions": {
"reason": "\"json\" field type does not contain the \"_in\" filter operator",
"code": "INVALID_QUERY"
}
}
]
The filter im sending:
{“_and”:[{“tags”:{“_in”:[“Externe competition”]}}]}
Is this possible or should i do it in some other way?