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

11 lines
237 B
Rust
Raw Normal View History

2022-11-04 20:23:36 +00:00
use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
2022-11-05 20:27:49 +00:00
query_path = "graphql/queries/me.graphql",
2022-11-21 18:48:53 +00:00
response_derives = "Debug",
skip_serializing_none
2022-11-04 20:23:36 +00:00
)]
2022-11-05 20:27:49 +00:00
pub struct Me;