codegen-for-async-graphql

codecov

Usage

bash cargo run --bin cargo-codegen-for-async-graphql path_to_schema.graphql path_to_output_dir

```rust mod models;

use async_graphql::*;

use models::{ Mutation, Query, };

let datasource = DataSource {}; let schema = Schema::build(Query {}, Mutation {}, EmptySubscription) .registertype::() .data(datasource) .finish(); let res = schema.execute(query).await; let json = serdejson::tostringpretty(&async_graphql::http::GQLResponse(res)); json.unwrap() ```