From 5aa598a633efa1f498d1e07777eb1de59b7aa305 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 8 Sep 2024 16:30:28 +0200 Subject: Mutation for notification update --- src/graphql/mutation.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'src/graphql/mutation.rs') 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::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::mutations::notification_update(ctx, input).await + } } -- cgit v1.2.3-18-g5258