From 6e6f2ce7c24acabdfd1f1f59378467ea225fb27a Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 26 Aug 2024 22:07:42 +0200 Subject: 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" } } } ``` --- src/graphql/query.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/graphql/query.rs') 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>, 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, + #[graphql(desc = "Offset results")] offset: Option, + ) -> Result>, String> { + alert::get_alerts(ctx, limit, offset).await + } } -- cgit v1.2.3-18-g5258