refactoring rolle
This commit is contained in:
parent
44931afbe7
commit
a290bcceb3
|
@ -1,5 +1,5 @@
|
||||||
pub mod entity;
|
pub mod entity;
|
||||||
pub mod model;
|
pub mod model;
|
||||||
|
pub mod mutation;
|
||||||
pub mod repository;
|
pub mod repository;
|
||||||
pub mod service;
|
pub mod service;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
mod create_rolle_input;
|
|
||||||
mod rolle;
|
mod rolle;
|
||||||
mod update_rolle_input;
|
mod rolle_create_input;
|
||||||
|
mod rolle_update_input;
|
||||||
|
|
||||||
pub use create_rolle_input::CreateRolleInput;
|
pub use rolle::Rolle;
|
||||||
|
pub use rolle_create_input::RolleCreateInput;
|
||||||
|
|
|
@ -10,6 +10,9 @@ pub struct Rolle {
|
||||||
/// Wann die Rolle erstellt wurde
|
/// Wann die Rolle erstellt wurde
|
||||||
pub created_at: Time,
|
pub created_at: Time,
|
||||||
|
|
||||||
|
/// Wann die Rolle geändert wurde
|
||||||
|
pub updated_at: Time,
|
||||||
|
|
||||||
/// Der Name einer Rolle
|
/// Der Name einer Rolle
|
||||||
pub name: String,
|
pub name: String,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use async_graphql::InputObject;
|
use async_graphql::InputObject;
|
||||||
|
|
||||||
#[derive(InputObject)]
|
#[derive(InputObject)]
|
||||||
pub struct CreateRolleInput {
|
pub struct RolleCreateInput {
|
||||||
/// Der Name einer Rolle
|
/// Der Name einer Rolle
|
||||||
pub name: String,
|
pub name: String,
|
||||||
}
|
}
|
|
@ -3,7 +3,7 @@ use async_graphql::InputObject;
|
||||||
use crate::scalar::Id;
|
use crate::scalar::Id;
|
||||||
|
|
||||||
#[derive(InputObject)]
|
#[derive(InputObject)]
|
||||||
pub struct UpdateRolleInput {
|
pub struct RolleUpdateInput {
|
||||||
/// Die ID einer Rolle
|
/// Die ID einer Rolle
|
||||||
pub id: Id,
|
pub id: Id,
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
use super::model::*;
|
||||||
|
use async_graphql::{Context, FieldResult};
|
||||||
|
use sqlx::postgres::PgPool;
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
pub struct RolleMutation;
|
||||||
|
|
||||||
|
#[async_graphql::Object]
|
||||||
|
impl RolleMutation {
|
||||||
|
async fn create_rollen(
|
||||||
|
&self,
|
||||||
|
ctx: &Context<'_>,
|
||||||
|
input: RolleCreateInput,
|
||||||
|
) -> FieldResult<Rolle> {
|
||||||
|
let pool = ctx.data::<PgPool>()?;
|
||||||
|
todo!();
|
||||||
|
// let row = Rolle::create(pool, &input).await?;
|
||||||
|
// Ok(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
// async fn update_rollen(
|
||||||
|
// &self,
|
||||||
|
// ctx: &Context<'_>,
|
||||||
|
// input: RolleUpdateInput,
|
||||||
|
// ) -> FieldResult<Rolle> {
|
||||||
|
// let pool = ctx.data::<PgPool>()?;
|
||||||
|
// let row = Rolle::update(pool, &input).await?;
|
||||||
|
// Ok(row)
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// async fn delete_rollen(&self, ctx: &Context<'_>, id: i32) -> FieldResult<bool> {
|
||||||
|
// let pool = ctx.data::<PgPool>()?;
|
||||||
|
// Ok(Rolle::delete(pool, &id).await?)
|
||||||
|
// }
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
mod create_rolle;
|
mod create_rolle;
|
||||||
mod delete_rolle;
|
mod delete_rolle;
|
||||||
mod find_all_rolle;
|
mod find_all_rolle;
|
||||||
mod find_rolle;
|
mod find_rolle_by_id;
|
||||||
mod update_rolle;
|
mod update_rolle;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
|
|
||||||
use super::Repository;
|
use super::Repository;
|
||||||
|
// use crate::domain::rolle::model;
|
||||||
use crate::{database::Queryer, domain::rolle::entity};
|
use crate::{database::Queryer, domain::rolle::entity};
|
||||||
|
|
||||||
impl Repository {
|
impl Repository {
|
||||||
|
|
|
@ -4,10 +4,10 @@ use ulid::Ulid;
|
||||||
|
|
||||||
use super::Service;
|
use super::Service;
|
||||||
use crate::domain::rolle::entity;
|
use crate::domain::rolle::entity;
|
||||||
use crate::domain::rolle::model::CreateRolleInput;
|
use crate::domain::rolle::model::RolleCreateInput;
|
||||||
|
|
||||||
impl Service {
|
impl Service {
|
||||||
pub async fn create_rolle(&self, input: CreateRolleInput) -> Result<entity::Rolle, Error> {
|
pub async fn create_rolle(&self, input: RolleCreateInput) -> Result<entity::Rolle, Error> {
|
||||||
// let username_exists = self.check_username_exists(&self.db, &input.name).await?;
|
// let username_exists = self.check_username_exists(&self.db, &input.name).await?;
|
||||||
// if username_exists {
|
// if username_exists {
|
||||||
// return Err(Error::UsernameAlreadyExists.into());
|
// return Err(Error::UsernameAlreadyExists.into());
|
||||||
|
|
|
@ -14,12 +14,16 @@ pub struct Hersteller {
|
||||||
|
|
||||||
#[derive(InputObject, Debug)]
|
#[derive(InputObject, Debug)]
|
||||||
pub struct HerstellerCreateInput {
|
pub struct HerstellerCreateInput {
|
||||||
|
/// Der Name eines Herstellers
|
||||||
pub name: String,
|
pub name: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(InputObject, Debug)]
|
#[derive(InputObject, Debug)]
|
||||||
pub struct HerstellerUpdateInput {
|
pub struct HerstellerUpdateInput {
|
||||||
|
/// Die Datenbank-ID
|
||||||
pub id: i32,
|
pub id: i32,
|
||||||
|
|
||||||
|
/// Der Name eines Herstellers
|
||||||
pub name: Option<String>,
|
pub name: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue