Skip to main content

typewriter_graphql/
lib.rs

1//! # typewriter-graphql
2//!
3//! GraphQL Schema Definition Language (SDL) emitter for the typewriter type sync SDK.
4//! Generates `.graphql` type definitions, enums, and unions from Rust structs and enums.
5
6mod emitter;
7mod mapper;
8
9pub use mapper::GraphQLMapper;