summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add docSanto Cariotti2024-08-238-0/+35
|
* Filter positions by user idSanto Cariotti2024-08-233-12/+70
|
* Add field `moving activity`Santo Cariotti2024-08-224-2/+74
| | | | Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
* Add position type and query on itSanto Cariotti2024-08-229-3/+135
|
* Add paginationSanto Cariotti2024-08-222-4/+16
| | | | Query is `users(limit: X offset Y)` with defaults X=20 Y=0
* Create rust.ymlSanto Cariotti2024-08-211-0/+22
|
* Authentication for endpointsSanto Cariotti2024-08-219-33/+133
|
* Add loginSanto Cariotti2024-08-218-7/+353
| | | | | | | | | | | | | | | | Fields sent are ``` { "query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType } }", "variables": { "input": { "email": "....", "password": "..." } } } ```
* Reformat types modSanto Cariotti2024-08-214-50/+56
|
* Add usersSanto Cariotti2024-08-214-23/+58
| | | | Query must be something like '{users { id, email, password, isAdmin }}'
* Reformat graphql modSanto Cariotti2024-08-214-15/+16
|
* Add state for databaseSanto Cariotti2024-08-207-42/+72
|
* InitSanto Cariotti2024-08-209-0/+2536