Skip to main content

postrust_graphql/
lib.rs

1//! GraphQL support for Postrust.
2//!
3//! This crate provides GraphQL API generation from PostgreSQL schema,
4//! including queries, mutations, and subscriptions.
5
6pub mod error;
7pub mod scalar;
8pub mod types;
9
10pub mod input;
11pub mod resolver;
12pub mod schema;
13pub mod subscription;
14
15pub mod context;
16pub mod handler;
17
18// Re-exports
19pub use error::GraphQLError;
20pub use types::GraphQLType;