gurkle-parser 0.3.0

A parser, AST and serializer for GraphQL schemas and query language.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Schema definition language AST and utility
//!
mod ast;
mod error;
mod format;
mod grammar;

pub use self::ast::*;
pub use self::error::ParseError;
pub use self::grammar::parse_schema;