Files
jackbeeby b412dfe2ca Initialisation
Added the packages and files for the backend server
2024-12-15 17:48:45 +11:00

9 lines
337 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isDocumentNode = void 0;
const graphql_1 = require("graphql");
function isDocumentNode(object) {
return object && typeof object === 'object' && 'kind' in object && object.kind === graphql_1.Kind.DOCUMENT;
}
exports.isDocumentNode = isDocumentNode;