import { type GraphQL } from "https://deno.land/x/drash@v2.8.1/src/services/graphql/graphql.ts";
const { ExecutionResult } = GraphQL;
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.
Properties
optional
errors: ReadonlyArray<GraphQLError>optional
data: TData | nulloptional
extensions: TExtensions