summaryrefslogtreecommitdiff
path: root/src/graphql/mutation.rs
AgeCommit message (Collapse)Author
2025-02-03Fix doc for user password on isAdmin fieldSanto Cariotti
2024-09-12Each alert has text{1,2,3} for the three possible areaSanto Cariotti
Alert level is moved to the notification struct
2024-09-08Mutation for notification updateSanto Cariotti
2024-09-07Add `userEdit` and `userPasswordEdit` mutationsSanto Cariotti
2024-09-07FormattedSanto Cariotti
2024-09-07Use submodules mutations and query for typesSanto Cariotti
2024-09-05Fixs with clippySanto Cariotti
2024-09-05Send notifications by Expo APISanto Cariotti
2024-09-05Create notifications from a new alertSanto Cariotti
2024-09-05Keep a device token for the user notificationSanto Cariotti
2024-09-03Add examples on docSanto Cariotti
2024-09-01Add extended area field for alertsSanto Cariotti
2024-08-30Use timestamp for `created_at` fieldSanto Cariotti
2024-08-30Return user_id on JWT creationSanto Cariotti
2024-08-29Valid the polygon before the alert creationSanto Cariotti
2024-08-26Fix order of lat/lngSanto Cariotti
2024-08-26Add alertsSanto 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-24Add new positionSanto 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-23Add docSanto Cariotti
2024-08-21Add loginSanto Cariotti
Fields sent are ``` { "query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType } }", "variables": { "input": { "email": "....", "password": "..." } } } ```