UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

10 lines (9 loc) 265 B
import { isObjectType } from 'graphql'; export function getObjectTypeFromTypeMap(typeMap, type) { if (type) { const maybeObjectType = typeMap[type.name]; if (isObjectType(maybeObjectType)) { return maybeObjectType; } } }