mentorenwahl/frontend/src/graphql/queries/tokens.rs

13 lines
259 B
Rust
Raw Normal View History

2022-11-21 18:48:53 +00:00
use graphql_client::GraphQLQuery;
type UUID = String;
type Time = String;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/queries/tokens.graphql",
response_derives = "Debug"
)]
pub struct Tokens;