Uses of Class
graphql.execution.preparsed.PreparsedDocumentEntry
-
Packages that use PreparsedDocumentEntry Package Description graphql graphql.execution.preparsed graphql.execution.preparsed.persisted -
-
Uses of PreparsedDocumentEntry in graphql
Methods in graphql that return PreparsedDocumentEntry Modifier and Type Method Description private PreparsedDocumentEntry
GraphQL. parseAndValidate(java.util.concurrent.atomic.AtomicReference<ExecutionInput> executionInputRef, GraphQLSchema graphQLSchema, InstrumentationState instrumentationState)
-
Uses of PreparsedDocumentEntry in graphql.execution.preparsed
Methods in graphql.execution.preparsed that return PreparsedDocumentEntry Modifier and Type Method Description PreparsedDocumentEntry
NoOpPreparsedDocumentProvider. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
PreparsedDocumentEntry
PreparsedDocumentProvider. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
Methods in graphql.execution.preparsed that return types with arguments of type PreparsedDocumentEntry Modifier and Type Method Description default java.util.concurrent.CompletableFuture<PreparsedDocumentEntry>
PreparsedDocumentProvider. getDocumentAsync(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
This is called to get a "cached" pre-parsed query and if it's not present, then the "parseAndValidateFunction" can be called to parse and validate the query.Method parameters in graphql.execution.preparsed with type arguments of type PreparsedDocumentEntry Modifier and Type Method Description PreparsedDocumentEntry
NoOpPreparsedDocumentProvider. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
PreparsedDocumentEntry
PreparsedDocumentProvider. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
default java.util.concurrent.CompletableFuture<PreparsedDocumentEntry>
PreparsedDocumentProvider. getDocumentAsync(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
This is called to get a "cached" pre-parsed query and if it's not present, then the "parseAndValidateFunction" can be called to parse and validate the query. -
Uses of PreparsedDocumentEntry in graphql.execution.preparsed.persisted
Fields in graphql.execution.preparsed.persisted with type parameters of type PreparsedDocumentEntry Modifier and Type Field Description private java.util.Map<java.lang.Object,PreparsedDocumentEntry>
InMemoryPersistedQueryCache. cache
Methods in graphql.execution.preparsed.persisted that return PreparsedDocumentEntry Modifier and Type Method Description PreparsedDocumentEntry
PersistedQueryCacheMiss. apply(java.lang.String queryToBeParsedAndValidated)
You give back the missing query text and graphql-java will compile and validate it.PreparsedDocumentEntry
PersistedQuerySupport. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
PreparsedDocumentEntry
InMemoryPersistedQueryCache. getPersistedQueryDocument(java.lang.Object persistedQueryId, ExecutionInput executionInput, PersistedQueryCacheMiss onCacheMiss)
PreparsedDocumentEntry
PersistedQueryCache. getPersistedQueryDocument(java.lang.Object persistedQueryId, ExecutionInput executionInput, PersistedQueryCacheMiss onCacheMiss)
protected PreparsedDocumentEntry
PersistedQuerySupport. mkMissingError(PersistedQueryError persistedQueryError)
Allows you to customize the graphql error that is sent back on a missing persisted queryMethods in graphql.execution.preparsed.persisted that return types with arguments of type PreparsedDocumentEntry Modifier and Type Method Description default java.util.concurrent.CompletableFuture<PreparsedDocumentEntry>
PersistedQueryCache. getPersistedQueryDocumentAsync(java.lang.Object persistedQueryId, ExecutionInput executionInput, PersistedQueryCacheMiss onCacheMiss)
This is called to get a persisted query from cache.Method parameters in graphql.execution.preparsed.persisted with type arguments of type PreparsedDocumentEntry Modifier and Type Method Description PreparsedDocumentEntry
PersistedQuerySupport. getDocument(ExecutionInput executionInput, java.util.function.Function<ExecutionInput,PreparsedDocumentEntry> parseAndValidateFunction)
-