FSharp.Data.GraphQL


ExecutionContext

Namespace: FSharp.Data.GraphQL.Types

Execution context of the current GraphQL operation. It contains a full knowledge about which fields will be accessed, what types are associated with them and what variable values have been set by incoming query.

Record Fields

Record FieldDescription
Errors
Signature: (type)

Collection of errors that occurred while executing current operation.

ExecutionPlan
Signature: ExecutionPlan

Execution plan describing, what fiedls are going to be resolved.

RootValue
Signature: obj

Boxed value of the top level type, root query/mutation.

Schema
Signature: ISchema

GraphQL schema definition.

Variables
Signature: Map<string,obj>

Collection of variables provided to execute current operation.

Fork me on GitHub