22 lines
466 B
Rust
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,
|
|
);
|