summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-03 21:06:20 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-03 21:06:20 +0200
commita0e7fe51936351ee9b8ae66c18a6dc32e64078ed (patch)
tree77fc134227ec41f88e51736b1107b76ead4759b6 /src/graphql/query.rs
parent4a85154f72e89f5114b9b89fa82914972518bde8 (diff)
Notification must be filtered by seen field
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 2e2466f..58685ed 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -111,17 +111,18 @@ impl Query {
/// curl http://localhost:8000/graphql
/// -H 'authorization: Bearer ***'
/// -H 'content-type: application/json'
- /// -d '{"query":"{notifications(alertId: 1) {
+ /// -d '{"query":"{notifications(seen: false 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 = "Show only seen or not notifications")] seen: bool,
#[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
+ notification::get_notifications(ctx, seen, alert_id, limit, offset).await
}
}