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::