You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GraphQLWebClient uses the GraphQLRequest which contains the query to send. That GraphQLRequest object is constructed using the GraphQLRequestBuilder which in turn exposes two ways of defining the query:
String parameter identifying a classpath resource, e.g. some-query-file.graphql
The actual String query
Describe the solution you'd like
Add the ability to send a query (e.g. construct a GraphQLRequest) using named queries. You could add resource file(s) containing named GraphQL queries, e.g.
I followed your read.me instructions but still could not figure out how to apply the to my following query that I typically test using the UI. Any tips with examples?
GraphQLWebClient
uses theGraphQLRequest
which contains the query to send. ThatGraphQLRequest
object is constructed using theGraphQLRequestBuilder
which in turn exposes two ways of defining the query:some-query-file.graphql
Describe the solution you'd like
Add the ability to send a query (e.g. construct a
GraphQLRequest
) using named queries. You could add resource file(s) containing named GraphQL queries, e.g.Upon startup these queries would be preloaded and they could be used by providing the query name, e.g.
The text was updated successfully, but these errors were encountered: