Olá @felipe-leite-matrixenergia!
Não são retornados todos os cards pois temos uma paginação. São 50 cards por pipe ou 30 por fase.
Para pegar todos os cards, você deve primeiro fazer essa query:
{
allCards(pipeId: 123456, first: 50) {
pageInfo {
hasNextPage
endCursor
}
edges {
node {
id
}
}
}
}
You will set the
pageInfo
attribute and it will return the "
endcursor
", with the endcursor you can see the other cards within that phase, putting it as an argument in the "
after
" command. Example:
E o
hasNextPage
vai te mostrar se existem mais páginas. Em seguida, pode usar o ID retornado pelo
endCursor
para pegar a próxima página:
{
allCards(pipeId:123456, first:50, after:"WyIyLjI1IiwiMTg1LjAiLDI2ODc1OTNd"){
pageInfo {
hasNextPage
endCursor
}
edges {
node {
id
}
}
}
}