0.3.0 • Published 3 years ago

@pyramation/graphql-ast v0.3.0

Weekly downloads
13
License
SEE LICENSE IN LI...
Repository
github
Last release
3 years ago

graphql-ast

Super bare-bones GraphQL AST utils

npm install @pyramation/graphql-ast
import * as t from '@pyramation/graphql-ast';

const ast = t.document({
  definitions: [
    t.operationDefinition({
      operation: 'mutation',
      name: mutationName,
      variableDefinitions,
      selectionSet: t.selectionSet({ selections: ... })
    })
  ]
});