We have observed that of late a particular graphl query with filter use to work earlier and its not working now.
Basically below graphql use to work earlier -
query MyQuery {
listEntity(filter: {name: {in: "abc" ,"" }}) {
edges {
node {
description
createdTime
name
}
}
}
}
But now its breaking with error {
{
"error": {
"code": 400,
"message": "Invalid in filter with property reference [node, externalId]. Invalid externalId identifier '\"\"'."
}
}
Can you help to know when and why this was changed ? This is kind of breaking change for us,
This same thing is observed for /models/instances/query endpoint as well.