Skip to main content

shaperail_runtime/graphql/
mod.rs

1//! GraphQL support (M15). Dynamic schema from resources, query/mutation resolvers,
2//! DataLoader for N+1 prevention, subscriptions, optional playground.
3
4mod dataloader;
5mod handler;
6mod schema;
7
8pub use dataloader::RelationLoader;
9pub use handler::{graphql_handler, playground_handler};
10pub use schema::{build_schema, build_schema_with_config, GqlContext, GraphQLSchema};