import { GraphQLSchema, ValidationContext, GraphQLFieldResolver, DocumentNode, GraphQLError, GraphQLFormattedError, ParseOptions } from 'graphql'; import { KeyValueCache, InMemoryLRUCache } from 'apollo-server-caching'; import { DataSource } from 'apollo-datasource'; import { ApolloServerPlugin } from 'apollo-server-plugin-base'; import { GraphQLExecutor, ValueOrPromise, GraphQLResponse, GraphQLRequestContext, Logger, SchemaHash } from 'apollo-server-types'; export interface GraphQLServerOptions, TRootValue = any> { schema: GraphQLSchema; schemaHash: SchemaHash; logger?: Logger; formatError?: (error: GraphQLError) => GraphQLFormattedError; rootValue?: ((parsedQuery: DocumentNode) => TRootValue) | TRootValue; context?: TContext | (() => never); validationRules?: Array<(context: ValidationContext) => any>; executor?: GraphQLExecutor; formatResponse?: (response: GraphQLResponse, requestContext: GraphQLRequestContext) => GraphQLResponse | null; fieldResolver?: GraphQLFieldResolver; debug?: boolean; dataSources?: () => DataSources; cache?: KeyValueCache; persistedQueries?: PersistedQueryOptions; plugins?: ApolloServerPlugin[]; documentStore?: InMemoryLRUCache; parseOptions?: ParseOptions; __testing_nodeEnv__?: string | undefined; } export declare type DataSources = { [name: string]: DataSource; }; export interface PersistedQueryOptions { cache?: KeyValueCache; ttl?: number | null; } export default GraphQLServerOptions; export declare function resolveGraphqlOptions(options: GraphQLServerOptions | ((...args: Array) => ValueOrPromise), ...args: Array): Promise; //# sourceMappingURL=graphqlOptions.d.ts.map