diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-10-20 21:58:58 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-10-20 21:58:58 +0200 |
commit | 1c3d072de12f3319cf40fad592835d5dfb301e70 (patch) | |
tree | c9143c230abb782d4211a6a3ad546c9205526679 /src/graphql/query.rs | |
parent | 08080d91203e9cf00f7e475ef56179cac94dfb7a (diff) |
Save notification's position info
Since we save the last user's position only, we can't be able to link a
notification to a position. So, the better thing is to save a redundant lat/lng
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs index 96b8a5b..63ca49c 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -93,13 +93,10 @@ impl Query { /// curl http://localhost:8000/graphql /// -H 'authorization: Bearer ***' /// -H 'content-type: application/json' - /// -d '{"query":"{notifications(seen: false alertId: 1) { + /// -d '{"query":"{notifications { /// id, /// alert { id, userId, createdAt, area, areaLevel2, areaLevel3, text1, text2, text3, reachedUsers }, - /// position {id, userId, createdAt, latitude, longitude, movingActivity}, - /// seen, - /// level, - /// createdAt + /// userId, latitude, longitude, movingActivity, level, seen, createdAt /// }}"}' /// ``` async fn notifications<'ctx>( |