summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-08 15:45:10 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-08 15:45:10 +0200
commit73dbc1e5cbce860ef3e3ab00d18cb118be6db713 (patch)
tree37cb4e5f02821cbb6f69a6443986255b7d4a7a45 /src/graphql/query.rs
parent365c4cc318479b2ad8bb848ca03d96dfd6d2aed8 (diff)
Filter notifications by optional id and optional seen
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index e52bd2a..c39d19a 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -118,11 +118,12 @@ impl Query {
async fn notifications<'ctx>(
&self,
ctx: &Context<'ctx>,
- #[graphql(desc = "Show only seen or not notifications")] seen: bool,
+ #[graphql(desc = "Show only seen or not notifications")] seen: Option<bool>,
+ #[graphql(desc = "Filter by ID")] id: Option<i32>,
#[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::query::get_notifications(ctx, seen, alert_id, limit, offset).await
+ notification::query::get_notifications(ctx, seen, id, alert_id, limit, offset).await
}
}