This topic was automatically generated from Slack. You can find the original thread here.
Hi Pipedream team, I’ve got a component using Axios to perform a Graphql query against the Jobber app. When I run it, the query returns a totalCount of 110 but only provides 100 edges (I’ve requested the first 150). I could split it into two queries but I’m wondering where the limitation is.
Pipedream axios is just performing the request, have you tried running the same request in an HTTP request testing tool like Bruno/Insomnia to verify there’s different behavior with the same GraphQL request?
I’ve run it using an http request from Pipedream with the same result. I’ve also tried it using Jobber’s development GraphIQL interface and received all of the data.
Removing the $ argument resolved the timeout. I’m still only getting 100 edges with the vanilla axios, so I revalidated my assertion about getting all the data from the development GraphIQL interface and found I was wrong. Jobber seems to be paging the data.
Thanks for your input. I’ll have to refactor to use pagination for Jobber.