I am having an issue in which whenever I try to run and advanced search on allCards, I get an execution error. here is the query I am trying to run (pipeId and value have been changed)
{
allCards(pipeId: 1111111,
filter:{
field: "taskid",
operator: equal,
value: "1111"
})
{
edges{
node{
id
}
}
}
}
and the error I am receiving:
{
"data": {
"allCards": null
},
"errors": "
{
"code": 30000,
"locations": "
{
"column": 2,
"line": 1
}
],
"message": "Something went wrong",
"path": "
"allCards"
],
"type": "ExecutionError"
}
]
}
no matter which field or value i put in the advanced search filter, I get the same error. Does anyone know what I am doing wrong or of this is a known issue with the api?