Skip to main content
Module

x/graphql_tools/deps.ts>ExecutionResult

[DEPRECATED] 🦕 Useful tools to create and manipulate GraphQL schemas. Deno port of `graphql-tools` library
Latest
interface ExecutionResult
import { type ExecutionResult } from "https://deno.land/x/graphql_tools@0.0.4-deprecated/deps.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