mentorenwahl/frontend/src/graphql/mutations/logout.rs

13 lines
268 B
Rust

use graphql_client::GraphQLQuery;
type UUID = String;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/mutations/logout.graphql",
response_derives = "Debug",
skip_serializing_none
)]
pub struct Logout;