@vnodes/graphql
    Preparing search index...

    Type Alias GraphQLFieldResolverParams<TSource, TContext, TArgs>

    type GraphQLFieldResolverParams<
        TSource,
        TContext,
        TArgs = { [argName: string]: any },
    > = {
        args: TArgs;
        contextValue: TContext;
        info: GraphQLResolveInfo;
        source: TSource;
    }

    Type Parameters

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

    Properties

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