Skip to main content
Module

x/graphql_deno/lib/execution/index.d.ts

GraphQL-JS ported to Deno
Latest
import * as graphqlDeno from "https://deno.land/x/graphql_deno@v15.0.0/lib/execution/index.d.ts";

Variables

If a resolve function is not given, then a default resolve behavior is used which takes the property of the source object of the same name as the field and returns it as the result, or if it's a function, returns the result of calling that function while passing along args and context.

If a resolveType function is not given, then a default resolve behavior is used which attempts two strategies:

Functions

Implements the "Evaluating requests" section of the GraphQL specification.

Prepares an object map of argument values given a directive definition and a AST node which may contain directives. Optionally also accepts a map of variable values.

Given a Path, return an Array of the path keys.

Interfaces

The result of GraphQL execution.