( selectionSet: string, options?: GraphQLParseOptions, )
| 2 | import { GraphQLParseOptions } from './Interfaces.js'; |
| 3 | |
| 4 | export function parseSelectionSet( |
| 5 | selectionSet: string, |
| 6 | options?: GraphQLParseOptions, |
| 7 | ): SelectionSetNode { |
| 8 | const query = parse(selectionSet, options).definitions[0] as OperationDefinitionNode; |
| 9 | return query.selectionSet; |
| 10 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…