UNPKG

361 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.parseSelectionSet = void 0;
4const graphql_1 = require("graphql");
5function parseSelectionSet(selectionSet, options) {
6 const query = (0, graphql_1.parse)(selectionSet, options).definitions[0];
7 return query.selectionSet;
8}
9exports.parseSelectionSet = parseSelectionSet;