I'm trying to query all cards from pipe using Pipefy API Graphql, but some cards that appear in the pipe board aren't being returned in the api.
In the code below I'm trying get all cards from my Pipe
{
pipe(id: 1260940) {
phases {
id, name, cards { edges {node {
id, createdAt, fields {
name
value
}
}}}
}
}
}
Or if I search directly in the phase where are these "hidden" cards
{
phase(id: 8422613) {
cards {
edges {
node {
id
}
}
}
}
}
For example: the card #426803396, that is in this pipe (1260940) and this phase (8422613), isn't returned in any those queries above.