Is there documentation to run vanilla graphql queries using say ApolloClient?
In my usecase, my content fragment schema has 350+ elements in it. UI Head is a reporting react app, allows users to choose columns and graphql query must load results. Page load pulls only 10 elements and allows users to dynamically add more elements.
With this reporting page, persistentQueries wont help me. The query must fetch all 350 elements and then UI must filter interested elements. Looking for a way to construct queries at client using Apollo and run.
Documentation reads ability to run direct direct queries may get deprecated.
Until we too migrate content fragments into better solutions, looking for running direct queries. Is there documentation how to implement?