diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-08 16:30:28 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-08 16:30:28 +0200 |
commit | 5aa598a633efa1f498d1e07777eb1de59b7aa305 (patch) | |
tree | cdc4b455ff42db773a88d8bea90469b682b08997 /src/graphql/mutation.rs | |
parent | 73dbc1e5cbce860ef3e3ab00d18cb118be6db713 (diff) |
Mutation for notification update
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r-- | src/graphql/mutation.rs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 12a741c..4a31428 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -6,6 +6,8 @@ use crate::graphql::types::{ }; use async_graphql::{Context, FieldResult, Object}; +use super::types::notification; + /// Mutation struct pub struct Mutation; @@ -168,4 +170,28 @@ impl Mutation { ) -> FieldResult<alert::Alert> { alert::mutations::new_alert(ctx, input).await } + + /// Make GraphQL request to update notification seen status. + /// + /// Example: + /// ```text + /// curl -X POST http://localhost:8000/graphql \ + /// -H "Content-Type: application/json" \ + /// -H "Authorization: Bearer ****" \ + /// -d '{ + /// "query": "mutation NotificationUpdate($input: NotificationUpdateInput!) { notificationUpdate(input: $input) { id seen } }", + /// "variables": { + /// "input": { + /// "id": 42, + /// "seen": true + /// } + /// } + /// } + async fn notification_update<'ctx>( + &self, + ctx: &Context<'ctx>, + input: notification::NotificationUpdateInput, + ) -> FieldResult<notification::Notification> { + notification::mutations::notification_update(ctx, input).await + } } |