Martin Brehovsky
05/17/2021, 11:51 AMDariusz Kuc
05/17/2021, 2:55 PMMartin Brehovsky
05/17/2021, 9:03 PM/graphql
endpoint - ideally I'd like to expose only persisted queries in our prod environment and disable /graphql
endpoint completely (security team asks for this).Dariusz Kuc
05/17/2021, 9:36 PMGraphQL
bean, somehow map the query SHA to a query and then use it to create ExecutionInput
i.e. something like https://github.com/ExpediaGroup/graphql-kotlin/blob/master/servers/graphql-kotlin-[…]/expediagroup/graphql/server/execution/GraphQLRequestHandler.ktMartin Brehovsky
05/17/2021, 10:09 PMShane Myrick
05/18/2021, 3:30 PMGraphQLServer
https://github.com/ExpediaGroup/graphql-kotlin/blob/669d62b022b798be315c18a62d9a06[…]tlin/com/expediagroup/graphql/server/execution/GraphQLServer.kt
You can override the entire method or the individual, GraphQLRequestParser
, GraphQLContextFactory
, and GraphQLRequestHandler
Martin Brehovsky
05/19/2021, 4:32 PM