Age | Commit message (Collapse) | Author |
|
```
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 }}'
|
|
|
|
|
|
|