9 lines
133 B
Rust
9 lines
133 B
Rust
|
#[derive(juniper::GraphQLObject)]
|
||
|
struct Object {
|
||
|
test: String,
|
||
|
#[graphql(name = "test")]
|
||
|
test2: String,
|
||
|
}
|
||
|
|
||
|
fn main() {}
|