libgraphql-parser 0.0.5

A blazing fast, error-focused, lossless GraphQL parser for schema, executable, and mixed documents.
Documentation
//! Compatibility layer for converting between the
//! libgraphql AST (`crate::ast`) and `graphql_parser`
//! v0.4 types.
//!
//! See [Section 9.2 of the AST design plan](
//! ../../custom-ast-plan.md) for the full conversion
//! specification.

mod from_query;
mod from_schema;
mod helpers;
mod to_query;
mod to_schema;

pub use from_query::from_graphql_parser_query_ast;
pub use from_query::from_graphql_parser_query_ast_with_source;
pub use from_schema::from_graphql_parser_schema_ast;
pub use from_schema::from_graphql_parser_schema_ast_with_source;
pub use to_query::to_graphql_parser_query_ast;
pub use to_schema::to_graphql_parser_schema_ast;

#[cfg(test)]
mod tests;