10 lines
129 B
Rust
10 lines
129 B
Rust
use juniper::GraphQLEnum;
|
|
|
|
#[derive(GraphQLEnum)]
|
|
enum Test {
|
|
Test,
|
|
#[graphql(name = "TEST")]
|
|
Test1,
|
|
}
|
|
|
|
fn main() {}
|