| 
				
					 | 
			hace 10 meses | |
|---|---|---|
| .. | ||
| dist | hace 10 meses | |
| src | hace 10 meses | |
| LICENSE | hace 10 meses | |
| README.md | hace 10 meses | |
| package.json | hace 10 meses | |
The sortAST function is used to alphabetically sort all of the nodes in a graphql DocumentNode.
import { sortAST } from "@apollo/utils.sortast";
const sortedAST = sortAST(
  parse(`#graphql
  query Foo { c b a }
`),
);
print(sortedAST);
// query Foo { a b c }