Age | Commit message (Collapse) | Author |
|
|
|
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
|
|
|
|
|
|
Alert level is moved to the notification struct
|
|
|
|
|
|
|
|
|
|
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"
}
}
}
```
|
|
Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
|
|
|
|
Query must be something like '{users { id, email, password, isAdmin }}'
|