Hello everybody. I’m currently having an issue where on a specific pipe, the findCards query returns an empty array of edges, no matter what fieldId and fieldValue I try to use. I don’t think my query is wrong because it returns an error when I pass an invalid fieldId and also it works on a different pipe. Anyone has any idea if I’m missing some pipe configuration or something like that?
If it’s important, i’m using Postman to make the requests.
query($search: FindCards!, $pipeId: ID!){
findCards(pipeId: $pipeId, search: $search) {
edges {
node {
id, title, fields {name, value}
}
}
pageInfo {
endCursor
startCursor
}}
}
(GraphQL Variables):
{
"search": {"fieldId":"field_id", "fieldValue":"field_value"},
"pipeId": "pipe_id"
}