From 105f6831d13ebb473b6ce9b63c5c159b5a6c964d Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 12 Sep 2024 11:46:27 +0200 Subject: Each alert has text{1,2,3} for the three possible area Alert level is moved to the notification struct --- src/graphql/query.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/graphql/query.rs') diff --git a/src/graphql/query.rs b/src/graphql/query.rs index c39d19a..e3750c9 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -92,7 +92,7 @@ impl Query { /// curl http://localhost:8000/graphql /// -H 'authorization: Bearer ***' /// -H 'content-type: application/json' - /// -d '{"query":"{alerts(id: 12) {id, userId, createdAt, area, extendedArea, level}}"}' + /// -d '{"query":"{alerts(id: 12) {id, userId, createdAt, area, areaLevel2, areaLevel3, text1, text2, text3}}"}' /// ``` async fn alerts<'ctx>( &self, @@ -112,7 +112,12 @@ impl Query { /// -H 'authorization: Bearer ***' /// -H 'content-type: application/json' /// -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 + /// id, + /// alert { id, userId, createdAt, area, areaLevel2, areaLevel3, text1, text2, text3, reachedUsers }, + /// position {id, userId, createdAt, latitude, longitude, movingActivity}, + /// seen, + /// level, + /// createdAt /// }}"}' /// ``` async fn notifications<'ctx>( -- cgit v1.2.3-18-g5258