Files
axum-async-graphql/src/mutations/mod.rs

19 lines
362 B
Rust
Raw Normal View History

2024-12-06 14:06:27 +01:00
pub mod benutzer;
pub mod gruppe;
2024-05-31 00:32:51 +02:00
pub mod hersteller;
2024-06-03 15:41:00 +02:00
pub mod modell;
2026-05-27 13:48:02 +02:00
pub mod rolle;
2024-05-31 00:32:51 +02:00
pub mod typ;
2024-05-31 00:32:51 +02:00
use async_graphql::MergedObject;
#[derive(MergedObject, Default)]
2024-06-03 15:41:00 +02:00
pub struct Mutation(
typ::TypMutation,
hersteller::HerstellerMutation,
modell::ModellMutation,
2024-12-06 14:06:27 +01:00
benutzer::BenutzerMutation,
gruppe::GruppeMutation,
2026-05-27 13:48:02 +02:00
rolle::RolleMutation,
2024-06-03 15:41:00 +02:00
);