2024-05-31 00:32:51 +02:00
|
|
|
pub mod hersteller;
|
2024-06-03 15:41:00 +02:00
|
|
|
pub mod modell;
|
2024-05-31 00:32:51 +02:00
|
|
|
pub mod typ;
|
|
|
|
|
use async_graphql::MergedObject;
|
|
|
|
|
|
|
|
|
|
#[derive(MergedObject, Default)]
|
2024-06-03 15:41:00 +02:00
|
|
|
pub struct Mutation(
|
|
|
|
|
typ::TypMutation,
|
|
|
|
|
hersteller::HerstellerMutation,
|
|
|
|
|
modell::ModellMutation,
|
|
|
|
|
);
|