(node)
| 10 | const ignoredFragments = new Set<string>(); |
| 11 | return visit(document, { |
| 12 | Document(node) { |
| 13 | return { |
| 14 | ...node, |
| 15 | definitions: sortExecutableNodes(node.definitions), |
| 16 | }; |
| 17 | }, |
| 18 | OperationDefinition(node) { |
| 19 | if (node.operation === 'mutation') { |
| 20 | ignoredNodes.add(node.selectionSet); |
nothing calls this directly
no test coverage detected