UNPKG

@aws-amplify/data-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer - Aliased to use `Data` name scheme.

15 lines (13 loc) 419 B
import { OperationDefinitionNode, OperationTypeDefinitionNode, } from '../language/ast'; import { GraphQLSchema } from '../type/schema'; import { GraphQLObjectType } from '../type/definition'; /** * Extracts the root type of the operation from the schema. */ export function getOperationRootType( schema: GraphQLSchema, operation: OperationDefinitionNode | OperationTypeDefinitionNode, ): GraphQLObjectType;