summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-03 20:14:58 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-03 20:15:52 +0200
commit32ba33078c2970b8658425260de287d6cde0db82 (patch)
tree3b3886a8eb2377fe021a054896cd5b7021b2e92e /src/graphql/query.rs
parente6cadc73edf20b4f959e8811cf7944d57fe6a5da (diff)
Add notification type
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index c122220..2e2466f 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -103,4 +103,25 @@ impl Query {
) -> Result<Option<Vec<alert::Alert>>, String> {
alert::get_alerts(ctx, id, limit, offset).await
}
+
+ /// Returns all the notifications. They can be filtered by an alert id.
+ ///
+ /// Request example:
+ /// ```text
+ /// curl http://localhost:8000/graphql
+ /// -H 'authorization: Bearer ***'
+ /// -H 'content-type: application/json'
+ /// -d '{"query":"{notifications(alertId: 1) {
+ /// id, alert { id, userId, createdAt, area, extendedArea, level, reachedUsers }, position {id, userId, createdAt, latitude, longitude, movingActivity}, seen, createdAt
+ /// }}"}'
+ /// ```
+ async fn notifications<'ctx>(
+ &self,
+ ctx: &Context<'ctx>,
+ #[graphql(desc = "Filter by alert ID")] alert_id: Option<i32>,
+ #[graphql(desc = "Limit results")] limit: Option<i64>,
+ #[graphql(desc = "Offset results")] offset: Option<i64>,
+ ) -> Result<Option<Vec<notification::Notification>>, String> {
+ notification::get_notifications(ctx, alert_id, limit, offset).await
+ }
}