como/como_gql/src/graphql.rs

90 lines
2.1 KiB
Rust
Raw Normal View History

2022-10-04 11:07:14 +02:00
use async_graphql::{Context, EmptySubscription, Object, Schema};
2022-10-02 20:52:29 +02:00
2022-10-04 22:39:57 +02:00
use como_domain::{
item::{
queries::{GetItemQuery, GetItemsQuery},
requests::CreateItemDto,
},
projects::{
queries::{GetProjectQuery, GetProjectsQuery},
ProjectDto,
},
};
2022-10-04 11:06:48 +02:00
use como_infrastructure::register::ServiceRegister;
2022-10-04 11:07:14 +02:00
2022-10-04 22:39:57 +02:00
use crate::items::{CreatedItem, Item};
2022-10-04 12:06:00 +02:00
pub type ComoSchema = Schema<QueryRoot, MutationRoot, EmptySubscription>;
2022-10-02 14:15:45 +02:00
pub struct MutationRoot;
#[Object]
impl MutationRoot {
2022-10-03 23:00:31 +02:00
async fn create_item(
&self,
ctx: &Context<'_>,
item: CreateItemDto,
2022-10-04 22:39:57 +02:00
) -> anyhow::Result<CreatedItem> {
2022-10-04 11:06:48 +02:00
let services_register = ctx.data_unchecked::<ServiceRegister>();
let created_item = services_register.item_service.add_item(item).await?;
2022-10-04 22:39:57 +02:00
Ok(CreatedItem {
id: created_item.id,
})
2022-10-03 23:00:31 +02:00
}
2022-10-02 14:15:45 +02:00
}
2022-10-02 12:12:08 +02:00
pub struct QueryRoot;
#[Object]
impl QueryRoot {
2022-10-04 22:39:57 +02:00
// Items
async fn get_item(&self, ctx: &Context<'_>, query: GetItemQuery) -> anyhow::Result<Item> {
let item = ctx
.data_unchecked::<ServiceRegister>()
.item_service
.get_item(query)
.await?;
Ok(Item::from(item))
}
async fn get_items(
&self,
ctx: &Context<'_>,
query: GetItemsQuery,
) -> anyhow::Result<Vec<Item>> {
let items = ctx
.data_unchecked::<ServiceRegister>()
.item_service
.get_items(query)
.await?;
Ok(items.iter().map(|i| Item::from(i.clone())).collect())
}
// Projects
async fn get_project(
&self,
ctx: &Context<'_>,
query: GetProjectQuery,
) -> anyhow::Result<ProjectDto> {
ctx.data_unchecked::<ServiceRegister>()
.project_service
.get_project(query)
.await
}
async fn get_projects(
&self,
ctx: &Context<'_>,
query: GetProjectsQuery,
) -> anyhow::Result<Vec<ProjectDto>> {
ctx.data_unchecked::<ServiceRegister>()
.project_service
.get_projects(query)
.await
2022-10-04 11:06:48 +02:00
}
2022-10-02 12:12:08 +02:00
}