| Interface | Description |
|---|---|
| PersistedQueryCache |
This interface is used to abstract an actual cache that can cache parsed persistent queries.
|
| PersistedQueryCacheMiss |
The call back when a valid persisted query is not in cache and it needs to be compiled and validated
by the graphql engine.
|
| Class | Description |
|---|---|
| ApolloPersistedQuerySupport |
This persisted query support class supports the Apollo scheme where the persisted
query id is in
ExecutionInput.getExtensions(). |
| InMemoryPersistedQueryCache |
A PersistedQueryCache that is just an in memory map of known queries.
|
| InMemoryPersistedQueryCache.Builder | |
| PersistedQuerySupport |
This abstract class forms the basis for persistent query support.
|
| Exception | Description |
|---|---|
| PersistedQueryError | |
| PersistedQueryIdInvalid | |
| PersistedQueryNotFound |
An exception that indicates the query id is not valid and can be found ever in cache
|