summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
AgeCommit message (Collapse)Author
2025-02-03Show notifications list for alertsSanto Cariotti
2025-01-17Sound as binary stringSanto Cariotti
2024-10-20Save notification's position infoSanto Cariotti
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
2024-10-18Filter positions by list of moving activitiesSanto Cariotti
2024-10-18Use only one position per userSanto Cariotti
2024-09-16Use `AppState` instead of `String` using some traitsSanto 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-08Filter notifications by optional id and optional seenSanto Cariotti
2024-09-07Use submodules mutations and query for typesSanto Cariotti
2024-09-03Notification must be filtered by seen fieldSanto Cariotti
2024-09-03Add notification typeSanto Cariotti
2024-09-03Add user query used to find an user by idSanto Cariotti
2024-09-03Add name and address fields for usersSanto Cariotti
2024-09-03Add examples on docSanto Cariotti
2024-08-30Add filter for alert by idSanto 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-23Add `lastPositions` query with filter by `movingActivity` paramSanto Cariotti
2024-08-23Add docSanto Cariotti
2024-08-23Filter positions by user idSanto Cariotti
2024-08-22Add position type and query on itSanto Cariotti
2024-08-22Add paginationSanto Cariotti
Query is `users(limit: X offset Y)` with defaults X=20 Y=0
2024-08-21Authentication for endpointsSanto Cariotti
2024-08-21Reformat types modSanto Cariotti
2024-08-21Add usersSanto Cariotti
Query must be something like '{users { id, email, password, isAdmin }}'
2024-08-21Reformat graphql modSanto Cariotti