UNPKG

337 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isDocumentNode = void 0;
4const graphql_1 = require("graphql");
5function isDocumentNode(object) {
6 return object && typeof object === 'object' && 'kind' in object && object.kind === graphql_1.Kind.DOCUMENT;
7}
8exports.isDocumentNode = isDocumentNode;