How to request multiple schemas with GraphQlAsync?

Hi!
How to make a class structure to request more than one schema?
I’m using the following graphQl query in GraphQlAsync method:

{ queryAxisContents { data { order { iv } } } queryGeneralResultContents { data { type { iv } } } querySyntheticResultContents { data { datetime { iv } } } }

I have a class for Axis, one for GeneralResult and one for SyntheticResult and I can retrieve its data separately, but I don’t know how to join them together in a GraphQlAsync request.

Hi,

the GraphQL Endpoint supports batching, so you pass in an array of query objects. But it is not possible over the UI.

1 Like