diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-12 11:46:27 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-12 11:46:27 +0200 |
commit | 105f6831d13ebb473b6ce9b63c5c159b5a6c964d (patch) | |
tree | 0e408145276bf8be723710e0a57d872afa9fd49c /src/graphql/query.rs | |
parent | 48a0c0f007bff5df95c69b727e3ee0e6c3b9bfeb (diff) |
Each alert has text{1,2,3} for the three possible area
Alert level is moved to the notification struct
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 9 |
1 files changed, 7 insertions, 2 deletions
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>( |