Performance issues with GraphQL queries.
Hi Team,
There is a requirement in my Project where we are fetching 3rd party data using GraphQL.
This 3rd party data has properties details (which will be rendered as filters on page for end users). To make this Filters functionality works we need full data set at FE.
To get the full data set from 3rd party we need to make multiple calls, this led to performance issues.
We thought of using
- 'server-side pagination’, since we need full data set at FE, this option is not suitable for us.
- Persisted queries, doesn’t help much here (I guess).
- Batching GraphQL queries, my 3rd party system doesn’t support.
Is there a better way to avoid these performance issues in this case?
Thanks,
Raju.