Files
axum-async-graphql/src/mutations/mod.rs
2026-06-03 22:08:44 +02:00

22 lines
466 B
Rust

pub mod benutzer;
pub mod gruppe;
// pub mod hersteller;
// pub mod modell;
pub mod liegenschaft;
pub mod rolle;
use async_graphql::MergedObject;
use crate::domain::typ::mutation::TypMutation;
#[derive(MergedObject, Default)]
pub struct Mutation(
TypMutation,
// hersteller::HerstellerMutation,
// modell::ModellMutation,
benutzer::BenutzerMutation,
gruppe::GruppeMutation,
rolle::RolleMutation,
liegenschaft::LiegenschaftMutation,
);