diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-07 16:43:12 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-07 16:43:12 +0200 |
commit | da6170fa4cbe5dd5fbc7579e21b017410f34cd0b (patch) | |
tree | b883fe19e52b5ebe410671b781af7b1232a2ba13 /src/graphql/mutation.rs | |
parent | f2a94efe3e581deb18ed70ce78ad3750b771de9a (diff) |
Add `userEdit` and `userPasswordEdit` mutations
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r-- | src/graphql/mutation.rs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 0eb4c0b..12a741c 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -41,6 +41,7 @@ impl Mutation { /// ```text /// curl -X POST http://localhost:8000/graphql \ /// -H "Content-Type: application/json" \ + /// -H "Authorization: Bearer ***" \ /// -d '{ /// "query": "mutation RegisterDevice($input: RegisterNotificationToken!) { registerDevice(input: $input) { id name email } }", /// "variables": { @@ -58,6 +59,60 @@ impl Mutation { user::mutations::register_device(ctx, input).await } + /// Make GraphQL call to edit their passowrd. + /// + /// Example: + /// ```text + /// curl -X POST http://localhost:8000/graphql \ + /// -H "Content-Type: application/json" \ + /// -H "Authorization: Bearer ***" \ + /// -d '{ + /// "query": "mutation UserPasswordEdit($input: UserPasswordEdit!) { userPasswordEdit(input: $input) { id email name address is_admin } }", + /// "variables": { + /// "input": { + /// "password1": "***", + /// "password2": "***" + /// } + /// } + /// }' + /// ``` + async fn user_password_edit<'ctx>( + &self, + ctx: &Context<'ctx>, + input: user::UserPasswordEdit, + ) -> FieldResult<user::User> { + user::mutations::user_password_edit(ctx, input).await + } + + /// Make GraphQL call to edit an user. Not admins can edit only the user linked to the access + /// token used. + /// + /// Example: + /// ```text + /// curl -X POST http://localhost:8000/graphql \ + /// -H "Content-Type: application/json" \ + /// -H "Authorization: Bearer ***" \ + /// -d '{ + /// "query": "mutation UserEdit($input: UserEdit!, $id: Int!) { userEdit(input: $input, id: $id) { id email name address is_admin } }", + /// "variables": { + /// "input": { + /// "email": "mario.rossi@example.com", + /// "name": "Mario Rossi", + /// "address": "" + /// }, + /// "id": 42 + /// } + /// }' + /// ``` + async fn user_edit<'ctx>( + &self, + ctx: &Context<'ctx>, + input: user::UserEdit, + id: i32, + ) -> FieldResult<user::User> { + user::mutations::user_edit(ctx, input, id).await + } + /// Make GraphQL request to create new position to track /// /// Example: |