summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
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
}
}