libgraphql 0.0.34

A GraphQL engine for building GraphQL tools, clients, and servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(test)]
mod tests;

#[doc(inline)]
pub use libgraphql_core::*;

/// Helpful macros for doing things with GraphQL at Rust compile-time
/// (e.g. Define a compile-time validated and typechecked GraphQL
/// [`Schema`](crate::schema::Schema), etc)
#[cfg(feature = "macros")]
#[doc(inline)]
pub use libgraphql_macros as macros;

#[cfg(doctest)]
#[doc = include_str!("../../../README.md")]
struct README;