From 73dbc1e5cbce860ef3e3ab00d18cb118be6db713 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 8 Sep 2024 15:45:10 +0200 Subject: Filter notifications by optional id and optional seen --- src/graphql/query.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/graphql/query.rs') 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, + #[graphql(desc = "Filter by ID")] id: Option, #[graphql(desc = "Filter by alert ID")] alert_id: Option, #[graphql(desc = "Limit results")] limit: Option, #[graphql(desc = "Offset results")] offset: Option, ) -> Result>, String> { - notification::query::get_notifications(ctx, seen, alert_id, limit, offset).await + notification::query::get_notifications(ctx, seen, id, alert_id, limit, offset).await } } -- cgit v1.2.3-18-g5258