| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : //! Export the GraphQL schema as SDL for codegen. 2 : //! 3 : //! Usage: `cargo run --bin export_schema > ../web/schema.graphql` 4 : 5 : #![allow(clippy::print_stdout)] 6 : 7 : use async_graphql::{EmptySubscription, Schema}; 8 : use tinycongress_api::graphql::{MutationRoot, QueryRoot}; 9 : 10 0 : fn main() { 11 0 : let schema = Schema::build(QueryRoot, MutationRoot, EmptySubscription).finish(); 12 0 : print!("{}", schema.sdl()); 13 0 : } |
| Generated by: LCOV version 2.0-1 |