Simplier approach to GraphQL parsing. Using graphql-js library and parsing AST to simplier types. It is a backbone of graphql-zeus
and graphql-editor
How it works
It creates very simple ParserTree
from GraphQL schema
import { Parser, TreeToGraphQL } from 'graphql-js-tree';
const schemaFileContents = `
type Query{
hello: String!
}
schema{
query: Query
}
`;
const parsedSchema = Parser.parse(schemaFileContents);
const graphqlString = TreeToGraphQL.parse(parsedSchema);
Table of contents
License
MIT
Support
Join our GraphQL Editor Channel
Leave a star ;)
Contribute
For a complete guide to contributing to GraphQL Editor, see the Contribution Guide.
- Fork this repo
- Create your feature branch: git checkout -b feature-name
- Commit your changes: git commit -am 'Add some feature'
- Push to the branch: git push origin my-new-feature
- Submit a pull request