reactive_graph_client/client/runtime/remotes/mutations/
remove_all_remotes.rs

1#[cynic::schema_for_derives(file = r#"../../schema/graphql/reactive-graph-runtime-schema.graphql"#, module = "crate::schema_runtime::schema")]
2pub mod mutations {
3    #[derive(Debug, cynic::QueryFragment)]
4    #[cynic(graphql_type = "Mutation")]
5    pub struct RemoveAllRemotes {
6        pub remotes: RemoveAllRemotesMutationRemotes,
7    }
8
9    #[derive(Debug, cynic::QueryFragment)]
10    #[cynic(graphql_type = "MutationRemotes")]
11    pub struct RemoveAllRemotesMutationRemotes {
12        pub remove_all: bool,
13    }
14
15    pub fn remove_all() -> cynic::Operation<RemoveAllRemotes, ()> {
16        use cynic::MutationBuilder;
17        RemoveAllRemotes::build(())
18    }
19}