Filtering in JSON

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?

JSON filtering is not currently supported, see the relevant Feature Request

@comfortablycoding
Thanks for your response however i dont see this as a solution.
The feature request has been marked as under review for a long time now:


Shouldent it be reviewed or fixed by now?