Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"
}
}
}
```
|
|
```
curl -X POST http://localhost:8000/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer TOKEN" \
-d '{
"query": "mutation NewPosition($input: PositionInput!) { newPosition(input: $input) { id userId createdAt latitude longitude movingActivity } }",
"variables": {
"input": {
"latitude": 44.502952,
"longitude": 11.3114988,
"movingActivity": "IN_VEHICLE"
}
}
}'
```
|
|
|
|
|
|
|
|
Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
|
|
|
|
Query is `users(limit: X offset Y)` with defaults X=20 Y=0
|
|
|
|
|
|
Fields sent are
```
{
"query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType } }",
"variables": {
"input": {
"email": "....",
"password": "..."
}
}
}
```
|
|
|
|
Query must be something like '{users { id, email, password, isAdmin }}'
|
|
|
|
|
|
|