Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix discrepancies in printer

+4 -2
+4 -2
alias/language/printer.mjs
··· 76 76 case 'Variable': 77 77 return '$' + node.name.value; 78 78 case 'Document': 79 - return join(print(node.definitions), '\n\n'); 79 + return join(print(node.definitions), '\n\n') + '\n'; 80 80 case 'SelectionSet': 81 81 return block(print(node.selections)); 82 82 case 'Argument': ··· 113 113 114 114 case 'Directive': 115 115 return ( 116 - '@' + node.name.value + wrap('(', join(print(node.args), ', '), ')') 116 + '@' + 117 + node.name.value + 118 + wrap('(', join(print(node.arguments), ', '), ')') 117 119 ); 118 120 119 121 case 'NamedType':