My (not working) query looks like:
{
queryRecipesContents(filter: "data/cuisines/iv/data/iv/any(x: x/iv eq 'Mexican')") {
data {
cuisines {
iv {
data {
title {
iv
}
}
}
}
}
}
}
But this results in:
{
"data": {
"queryRecipesContents": null
},
"errors": [
{
"message": "OData $filter clause not valid: ex.Message.",
"locations": [
{
"line": 2,
"column": 3
}
]
}
]
}
What am I doing wrong here? Still learning OData, and it’s very confusing, since all the error messages are the same in the GraphQL playground…