Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-05 | Fixs with clippy | Santo Cariotti | |
2024-09-05 | Send notifications by Expo API | Santo Cariotti | |
2024-09-05 | Create notifications from a new alert | Santo Cariotti | |
2024-09-05 | Keep a device token for the user notification | Santo Cariotti | |
2024-09-03 | Notification must be filtered by seen field | Santo Cariotti | |
2024-09-03 | Add notification type | Santo Cariotti | |
2024-09-03 | Fix typo | Santo Cariotti | |
2024-09-03 | Add user query used to find an user by id | Santo Cariotti | |
2024-09-03 | Limit `users` query to admins only | Santo Cariotti | |
2024-09-03 | Add name and address fields for users | Santo Cariotti | |
2024-09-03 | Add examples on doc | Santo Cariotti | |
2024-09-01 | Add extended area field for alerts | Santo Cariotti | |
2024-08-30 | Add filter for alert by id | Santo Cariotti | |
2024-08-30 | Use timestamp for `created_at` field | Santo Cariotti | |
2024-08-30 | Return user_id on JWT creation | Santo Cariotti | |
2024-08-29 | Add CORS | Santo Cariotti | |
2024-08-29 | Valid the polygon before the alert creation | Santo Cariotti | |
2024-08-26 | Fix order of lat/lng | 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-24 | Add new position | Santo Cariotti | |
``` 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" } } }' ``` | |||
2024-08-23 | Add `lastPositions` query with filter by `movingActivity` param | Santo Cariotti | |
2024-08-23 | Add doc | Santo Cariotti | |
2024-08-23 | Filter positions by user id | Santo Cariotti | |
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-22 | Add pagination | Santo Cariotti | |
Query is `users(limit: X offset Y)` with defaults X=20 Y=0 | |||
2024-08-21 | Authentication for endpoints | Santo Cariotti | |
2024-08-21 | Add login | Santo Cariotti | |
Fields sent are ``` { "query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType } }", "variables": { "input": { "email": "....", "password": "..." } } } ``` | |||
2024-08-21 | Reformat types mod | Santo Cariotti | |
2024-08-21 | Add users | Santo Cariotti | |
Query must be something like '{users { id, email, password, isAdmin }}' | |||
2024-08-21 | Reformat graphql mod | Santo Cariotti | |
2024-08-20 | Add state for database | Santo Cariotti | |
2024-08-20 | Init | Santo Cariotti | |