Has anyone faced an issue with "Invalid operatorundefined" ?
For example, we use filter in GraphQL:
{
"limit": 10,
"offset": 0,
"filters": [
{
"property": {
"name": "app",
"value": {
"equals": "test"
}
}
}
]
}
But this returns an error like at the line
https://github.com/Helicone/helicone/blob/main/web/services/lib/filters/filters.ts#L31:
"errors": [
{
"message": "Invalid operatorundefined",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"heliconeRequest"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
}
}
]