# @apollo/utils.sortast

> Sort AST nodes in a document alphabetically

Latest version **3.0.0** (published 2023-04-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @apollo/utils.sortast
pnpm add @apollo/utils.sortast
yarn add @apollo/utils.sortast
bun add @apollo/utils.sortast
```

## Health

**Score 35/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 3.0.0 |
| Published | 2023-04-17 |
| First published | 2022-02-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=16 |
| Dependencies | 1 |
| Unpacked size | 8.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 41 |
| Author | Apollo |
| Maintainers | dkuc, glasser, trevor.scheer, apollo-bot |
| Keywords | apollo, graphql, typescript, node |

## Links

- npm: https://www.npmjs.com/package/@apollo/utils.sortast
- Repository: https://github.com/apollographql/apollo-utils
- Homepage: https://github.com/apollographql/apollo-utils#readme
- Issues: https://github.com/apollographql/apollo-utils/issues
- npm.io page: https://npm.io/package/@apollo/utils.sortast

## Dependencies (1)

- [lodash.sortby](https://npm.io/package/lodash.sortby.md) ^4.7.0

## Alternatives

- [apollo-link-http-common](https://npm.io/package/apollo-link-http-common.md) — 879.0K weekly downloads
- [react-relay](https://npm.io/package/react-relay.md) — 336.8K weekly downloads
- [relay-test-utils](https://npm.io/package/relay-test-utils.md) — 181.6K weekly downloads
- [@vendure/core](https://npm.io/package/@vendure/core.md) — 14.8K weekly downloads
- [@pnpm/deps.graph-sequencer](https://npm.io/package/@pnpm/deps.graph-sequencer.md) — 13.4K weekly downloads

## Recent versions

- 3.0.0 (latest) — 2023-04-17
- 2.0.1 — 2023-04-03
- 2.0.0 — 2022-11-18
- 1.1.0 — 2022-04-26
- 1.0.0 — 2022-02-16

## README

# sortAST

The `sortAST` function is used to alphabetically sort all of the nodes in a graphql `DocumentNode`.

## Usage

```ts
import { sortAST } from "@apollo/utils.sortast";

const sortedAST = sortAST(
  parse(`#graphql
  query Foo { c b a }
`),
);

print(sortedAST);
// query Foo { a b c }
```

---
_Source: https://npm.io/package/@apollo/utils.sortast · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
