absinthe v1.2.0-alpha.1 Absinthe.Resolution
The primary piece of metadata passed to aid resolution functions, describing the current field’s execution environment.
Summary
Types
t :: %Absinthe.Resolution{adapter: Absinthe.Adapter.t, context: map, definition: Blueprint.node_t, parent_type: Absinthe.Type.t, root_value: any, schema: Absinthe.Schema.t, source: any}
Information about the current resolution.
Options
:adapter
- The adapter used for any name conversions.:definition
- The Blueprint definition for this field. To access theschema type for this field, see the `definition.schema_node`.
:context
- The context passed toAbsinthe.run
.:root_value
- The root value passed toAbsinthe.run
, if any.:parent_type
- The parent type for the field.:schema
- The current schema.:source
- The resolved parent object; source of this field.