apollo_compiler/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![doc = include_str!("../README.md")]
#![deny(unreachable_pub)]

#[macro_use]
mod macros;
pub mod ast;
pub mod collections;
pub mod coordinate;
pub mod diagnostic;
pub mod executable;
#[macro_use]
mod execution;
pub mod introspection;
mod name;
mod node;
pub mod parser;
pub mod request;
pub mod response;
pub mod schema;
pub mod validation;

pub use self::executable::ExecutableDocument;
pub use self::name::InvalidNameError;
pub use self::name::Name;
pub use self::node::Node;
pub use self::schema::Schema;