2024-12-06 14:06:27 +01:00
|
|
|
pub mod benutzer;
|
|
|
|
|
pub mod gruppe;
|
2026-05-31 20:37:12 +02:00
|
|
|
// pub mod hersteller;
|
|
|
|
|
// 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-12-02 23:44:47 +01:00
|
|
|
|
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,
|
2026-05-31 20:37:12 +02:00
|
|
|
// 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
|
|
|
);
|