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

11 lines
243 B
Rust
Raw Normal View History

2022-11-13 11:44:08 +00:00
use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "graphql/schema.graphql",
query_path = "graphql/mutations/vote.graphql",
2022-11-21 18:48:53 +00:00
response_derives = "Debug",
skip_serializing_none
2022-11-13 11:44:08 +00:00
)]
pub struct Vote;