mentorenwahl/frontend/src/graphql/mutations/set_voting.rs
Dominic Grimm d6dbd18090
Some checks failed
continuous-integration/drone/push Build is failing
Add student vote enable toggle to admin panel
2023-02-04 12:14:11 +01:00

11 lines
254 B
Rust

use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/mutations/set_voting.graphql",
response_derives = "Debug",
skip_serializing_none
)]
pub struct SetVoting;