927e42201a
Co-authored-by: Kai Ren <tyranron@gmail.com>
10 lines
163 B
Rust
10 lines
163 B
Rust
use juniper::GraphQLInputObject;
|
|
|
|
#[derive(GraphQLInputObject)]
|
|
struct Object {
|
|
test: String,
|
|
#[graphql(name = "test")]
|
|
test2: String,
|
|
}
|
|
|
|
fn main() {}
|