Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecutionResult

The result of GraphQL execution.

  • errors is included when any errors occurred as a non-empty array.
  • data is the result of a successful execution of the query.
  • extensions is reserved for adding non-standard properties.
interface ExecutionResult <TData = ObjMap<unknown>, TExtensions = ObjMap<unknown>> {
data?: TData | null;
errors?: ReadonlyArray<GraphQLError>;
extensions?: TExtensions;
}

§Type Parameters

§
TData = ObjMap<unknown>
[src]
§
TExtensions = ObjMap<unknown>
[src]

§Properties

§
data?: TData | null
[src]
§
errors?: ReadonlyArray<GraphQLError>
[src]
§
extensions?: TExtensions
[src]