como/como_gql/src/projects.rs

49 lines
972 B
Rust
Raw Normal View History

use crate::common::*;
use async_graphql::{Context, Object};
2022-10-04 22:39:57 +02:00
use como_domain::projects::ProjectDto;
2022-10-04 22:39:57 +02:00
use uuid::Uuid;
use crate::items::Item;
2022-10-04 22:39:57 +02:00
pub struct Project {
pub id: Uuid,
pub name: String,
}
#[Object]
impl Project {
async fn id(&self) -> &Uuid {
&self.id
}
async fn name(&self) -> &String {
&self.name
}
async fn items(&self, ctx: &Context<'_>) -> anyhow::Result<Vec<Item>> {
let items = item_service(ctx)
.get_items(
get_domain_context(ctx),
como_domain::item::queries::GetItemsQuery {
project_id: self.id,
},
)
.await?
.iter()
.map(|i| Item::from(i.clone()))
.collect::<Vec<_>>();
Ok(items)
}
}
2022-10-04 22:39:57 +02:00
impl From<ProjectDto> for Project {
fn from(dto: ProjectDto) -> Self {
Self {
id: dto.id,
name: dto.name,
}
}
}