Modelle hinzugefügt

This commit is contained in:
Peter Schiwy
2024-06-03 15:41:00 +02:00
parent 6e6918e8ee
commit 534d819865
12 changed files with 122 additions and 130 deletions

View File

@@ -1,7 +1,11 @@
pub mod hersteller;
pub mod modell;
pub mod typ;
use async_graphql::MergedObject;
#[derive(MergedObject, Default)]
pub struct Mutation(typ::TypMutation, hersteller::HerstellerMutation);
pub struct Mutation(
typ::TypMutation,
hersteller::HerstellerMutation,
modell::ModellMutation,
);