summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-26 22:07:42 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-26 22:07:42 +0200
commit6e6f2ce7c24acabdfd1f1f59378467ea225fb27a (patch)
treefd8e08320e6d7b57937023621770bb06f2c31fa9 /src/graphql/query.rs
parent8d36b0b75904812ba8f6b9e38b50660dfbe78d0d (diff)
Add alerts
A payload for alert creation can be ``` { "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt level } }", "variables": { "input": { "points": [ { "latitude": 40.73061, "longitude": -73.935242 }, { "latitude": 40.741895, "longitude": -73.989308 }, { "latitude": 40.712776, "longitude": -74.005974 }, { "latitude": 40.73061, "longitude": -73.935242 }, ], "level": "TWO" } } } ```
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index c751543..36883e7 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -1,4 +1,4 @@
-use crate::graphql::types::{position, user};
+use crate::graphql::types::*;
use async_graphql::{Context, Object};
/// Query struct
@@ -43,4 +43,14 @@ impl Query {
) -> Result<Option<Vec<position::Position>>, String> {
position::last_positions(ctx, moving_activity).await
}
+
+ /// Returns all the positions
+ async fn alerts<'ctx>(
+ &self,
+ ctx: &Context<'ctx>,
+ #[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
+ }
}