summaryrefslogtreecommitdiff
path: root/src/graphql/mutation.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-08 16:30:28 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-08 16:30:28 +0200
commit5aa598a633efa1f498d1e07777eb1de59b7aa305 (patch)
treecdc4b455ff42db773a88d8bea90469b682b08997 /src/graphql/mutation.rs
parent73dbc1e5cbce860ef3e3ab00d18cb118be6db713 (diff)
Mutation for notification update
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r--src/graphql/mutation.rs26
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
+ }
}