From 4082fc6ea1d3976f76a0190112d99c73dd1419fb Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 3 Sep 2024 12:44:45 +0200 Subject: Add user query used to find an user by id --- src/graphql/query.rs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'src/graphql/query.rs') diff --git a/src/graphql/query.rs b/src/graphql/query.rs index d2b7968..c122220 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -11,7 +11,7 @@ impl Query { "1.0" } - /// Returns all the users + /// Returns all the users. It is restricted to admins only. /// /// Request example: /// ```text @@ -29,6 +29,23 @@ impl Query { user::get_users(ctx, limit, offset).await } + /// Returns an user by ID. Admins can check everyone. + /// + /// Request example: + /// ```text + /// curl http://localhost:8000/graphql + /// -H 'authorization: Bearer ***' + /// -H 'content-type: application/json' + /// -d '{"query":"{user(id: 1) { id, email, password, name, address, isAdmin }}"}' + /// ``` + async fn user<'ctx>( + &self, + ctx: &Context<'ctx>, + #[graphql(desc = "User to find")] id: i32, + ) -> Result { + user::get_user_by_id(ctx, id).await + } + /// Returns all the positions /// /// Request example: -- cgit v1.2.3-18-g5258