@vnodes/graphql
    Preparing search index...

    Interface MiddlewareContext<TSource, TContext, TArgs>

    interface MiddlewareContext<
        TSource = any,
        TContext = any,
        TArgs = { [argName: string]: any },
    > {
        args: TArgs;
        context: TContext;
        info: GraphQLResolveInfo;
        source: TSource;
    }

    Type Parameters

    • TSource = any
    • TContext = any
    • TArgs = { [argName: string]: any }
    Index

    Properties

    Properties

    args: TArgs
    context: TContext
    info: GraphQLResolveInfo
    source: TSource