UNPKG

188 BJavaScriptView Raw
1import { parse } from 'graphql';
2export function parseSelectionSet(selectionSet, options) {
3 const query = parse(selectionSet, options).definitions[0];
4 return query.selectionSet;
5}