Interface ResolverData<TContextType>

interface ResolverData<TContextType> {
    args: ArgsDictionary;
    context: TContextType;
    info: GraphQLResolveInfo;
    root: any;
}

Type Parameters

  • TContextType extends object = object

Properties

Properties

context: TContextType
info: GraphQLResolveInfo
root: any