summaryrefslogtreecommitdiffstats
path: root/schema
Commit message (Collapse)AuthorAgeFilesLines
* Remove `OnFoot` moving activitySanto Cariotti2024-09-101-1/+1
|
* Keep a device token for the user notificationSanto Cariotti2024-09-051-0/+1
|
* Add notification typeSanto Cariotti2024-09-031-0/+13
|
* Add name and address fields for usersSanto Cariotti2024-09-031-0/+2
|
* Add alertsSanto Cariotti2024-08-261-0/+14
| | | | | | | | | | | | | | | | | | | | | 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" } } } ```
* Add field `moving activity`Santo Cariotti2024-08-221-0/+3
| | | | Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
* Add position type and query on itSanto Cariotti2024-08-221-0/+10
|
* Add usersSanto Cariotti2024-08-211-0/+7
Query must be something like '{users { id, email, password, isAdmin }}'