@vnodes/graphql
    Preparing search index...

    Interface GraphQLRequestContext<TContext>

    interface GraphQLRequestContext<TContext extends BaseContext> {
        cache: KeyValueCache<string>;
        contextValue: TContext;
        document?: DocumentNode;
        errors?: readonly GraphQLError[];
        logger: Logger;
        metrics: GraphQLRequestMetrics;
        operation?: OperationDefinitionNode;
        operationName?: string | null;
        overallCachePolicy: CachePolicy;
        queryHash?: string;
        request: GraphQLRequest;
        requestIsBatched: boolean;
        response: GraphQLInProgressResponse;
        schema: GraphQLSchema;
        source?: string;
    }

    Type Parameters

    Index

    Properties

    cache: KeyValueCache<string>
    contextValue: TContext
    document?: DocumentNode
    errors?: readonly GraphQLError[]
    logger: Logger
    operation?: OperationDefinitionNode
    operationName?: string | null
    overallCachePolicy: CachePolicy
    queryHash?: string
    requestIsBatched: boolean
    response: GraphQLInProgressResponse
    schema: GraphQLSchema
    source?: string