1
0
mirror of https://github.com/actix/examples synced 2025-06-29 02:10:36 +02:00

Fix small issues in juniper-advanced example (#673)

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Pete Doherty
2023-12-11 01:54:22 -05:00
committed by GitHub
parent c648953b23
commit c34afd32fa
2 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ impl QueryRoot {
Ok(User { id, name, email })
}
#[graphql(description = "List of all users")]
#[graphql(description = "List of all products")]
fn products(context: &Context) -> FieldResult<Vec<Product>> {
let mut conn = context.db_pool.get().unwrap();
@ -65,7 +65,7 @@ impl QueryRoot {
Ok(products)
}
#[graphql(description = "Get Single user reference by user ID")]
#[graphql(description = "Get Single product reference by product ID")]
fn product(context: &Context, id: String) -> FieldResult<Product> {
let mut conn = context.db_pool.get().unwrap();
let product: Result<Option<Row>, DBError> =