Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/drash/src/services/graphql/graphql.ts>GraphQL.GraphQLResolveInfo

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
interface GraphQL.GraphQLResolveInfo
import { type GraphQL } from "https://deno.land/x/drash@v2.8.1/src/services/graphql/graphql.ts";
const { GraphQLResolveInfo } = GraphQL;

Properties

readonly
fieldName: string
readonly
fieldNodes: ReadonlyArray<FieldNode>
readonly
returnType: GraphQLOutputType
readonly
parentType: GraphQLObjectType
readonly
path: Path
readonly
schema: GraphQLSchema
readonly
fragments: { [key: string]: FragmentDefinitionNode; }
readonly
rootValue: any
readonly
operation: OperationDefinitionNode
readonly
variableValues: { [variableName: string]: any; }