Skip to main content
Module

x/graphql_deno/mod.ts>ExecutionResult

GraphQL-JS ported to Deno
Latest
interface ExecutionResult
import { type ExecutionResult } from "https://deno.land/x/graphql_deno@v15.0.0/mod.ts";

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.

Properties

optional
errors: ReadonlyArray<GraphQLError>
optional
data: { [key: string]: any; } | null