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

13 lines
279 B
Rust

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