Hello,
I've begun some PHP integrations to extract statistics from Pipefy, using this query:
$query = <<<GRAPHQL
{
pipe(id: xxxxxxxxx) {
phases {
name
cards(first: 100) {
edges {
node {
id
fields {
name
value
}
assignees {
name
}
}
}
}
}
}
}
GRAPHQL;
The data is being displayed in a vertical menu format, and it's working wonderfully. However, there's one issue: a specific phase only shows a maximum of 30 records. I understand this is due to an API pagination limitation, but I need a workaround. For instance, if we have 100 cards in one phase, how can I retrieve all of them? How do I modify my code?
Thanks
J