UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

5 lines (4 loc) 177 B
import { Kind } from 'graphql'; export function isDocumentNode(object) { return object && typeof object === 'object' && 'kind' in object && object.kind === Kind.DOCUMENT; }