summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-30 19:26:19 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-30 19:26:19 +0200
commitb9cfbbb420a66296c42fd863fe0bd0fa6f7445c1 (patch)
tree25de6f3707593a342bcdbc926002703c02f665c3 /src/graphql/query.rs
parente118a43c9ba1719be403d6e7a0f8c610319c144c (diff)
Add filter for alert by id
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index 36883e7..0bc5682 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -48,9 +48,10 @@ impl Query {
async fn alerts<'ctx>(
&self,
ctx: &Context<'ctx>,
+ #[graphql(desc = "Filter by ID")] id: Option<i32>,
#[graphql(desc = "Limit results")] limit: Option<i64>,
#[graphql(desc = "Offset results")] offset: Option<i64>,
) -> Result<Option<Vec<alert::Alert>>, String> {
- alert::get_alerts(ctx, limit, offset).await
+ alert::get_alerts(ctx, id, limit, offset).await
}
}