summaryrefslogtreecommitdiff
path: root/schema
AgeCommit message (Collapse)Author
2025-01-17Sound as binary stringSanto Cariotti
2024-10-20Save notification's position infoSanto Cariotti
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
2024-10-18Fix typo :de:Santo Cariotti
2024-10-18Use only one position per userSanto Cariotti
2024-09-12Each alert has text{1,2,3} for the three possible areaSanto Cariotti
Alert level is moved to the notification struct
2024-09-10Remove `OnFoot` moving activitySanto Cariotti
2024-09-05Keep a device token for the user notificationSanto Cariotti
2024-09-03Add notification typeSanto Cariotti
2024-09-03Add name and address fields for usersSanto Cariotti
2024-08-26Add alertsSanto Cariotti
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" } } } ```
2024-08-22Add field `moving activity`Santo Cariotti
Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
2024-08-22Add position type and query on itSanto Cariotti
2024-08-21Add usersSanto Cariotti
Query must be something like '{users { id, email, password, isAdmin }}'