It would be great if the server supported Apollo Persisted Queries.
When using persisted queries, requests may include only an extensions field containing the hash of the query, without the query itself. Currently, when such a request is executed, the io.smallrye.graphql.execution.ExecutionService returns an error indicating that the query is missing.
The graphql-java library already supports persisted queries via graphql.execution.preparsed.persisted.ApolloPersistedQuerySupport. But it's not possible to use this since the server throws the error earlier.
It would be great if the server supported Apollo Persisted Queries.
When using persisted queries, requests may include only an
extensionsfield containing the hash of the query, without the query itself. Currently, when such a request is executed, theio.smallrye.graphql.execution.ExecutionServicereturns an error indicating that the query is missing.The graphql-java library already supports persisted queries via
graphql.execution.preparsed.persisted.ApolloPersistedQuerySupport. But it's not possible to use this since the server throws the error earlier.