Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-05 | Keep a device token for the user notification | Santo Cariotti | |
2024-09-03 | Add notification type | Santo Cariotti | |
2024-09-03 | Add name and address fields for users | Santo Cariotti | |
2024-08-26 | Add alerts | Santo 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-22 | Add field `moving activity` | Santo Cariotti | |
Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity | |||
2024-08-22 | Add position type and query on it | Santo Cariotti | |
2024-08-21 | Add users | Santo Cariotti | |
Query must be something like '{users { id, email, password, isAdmin }}' |