graphql-language-service-utils
Version:
Utilities to support the GraphQL Language Service
33 lines • 1.11 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getQueryFacts = exports.getOperationASTFacts = void 0;
const graphql_1 = require("graphql");
const collectVariables_1 = require("./collectVariables");
function getOperationASTFacts(documentAST, schema) {
const variableToType = schema
? collectVariables_1.collectVariables(schema, documentAST)
: undefined;
const operations = [];
graphql_1.visit(documentAST, {
OperationDefinition(node) {
operations.push(node);
},
});
return { variableToType, operations };
}
exports.getOperationASTFacts = getOperationASTFacts;
function getOperationFacts(schema, documentString) {
if (!documentString) {
return;
}
try {
const documentAST = graphql_1.parse(documentString);
return Object.assign(Object.assign({}, getOperationASTFacts(documentAST, schema)), { documentAST });
}
catch (_a) {
return;
}
}
exports.default = getOperationFacts;
exports.getQueryFacts = getOperationFacts;
//# sourceMappingURL=getOperationFacts.js.map
;