Detailed payload of the current resolver
• TContext extends object
= object
• TField extends FieldOrOperation
<any
, any
, any
, any
> = FieldOrOperation
<any
, any
, any
, any
>
readonly
args:Record
<string
,any
>
The arguments provided to the field in the GraphQL query.
packages/core/src/utils/context.ts:25
readonly
context:TContext
The resolved value of the field, or an error.
packages/core/src/utils/context.ts:29
readonly
field:TField
The field that is being resolved.
packages/core/src/utils/context.ts:38
readonly
info:GraphQLResolveInfo
A custom object each resolver can read from/write to.
packages/core/src/utils/context.ts:33
readonly
root:any
The previous object, which for a field on the root Query type is often not used.
packages/core/src/utils/context.ts:21