summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-03 10:03:26 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-03 10:03:26 +0200
commitb47573a879d699d1c87e3b7b56be51bfded3182f (patch)
treee28f8459364fd550fc536d5aef4909b249b84e3e /src/graphql/query.rs
parente5794a65df0ff3e67ed1068e022cdb403a3ebbce (diff)
Add examples on doc
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index 0bc5682..27ef11f 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -12,6 +12,14 @@ impl Query {
}
/// Returns all the users
+ ///
+ /// Request example:
+ /// ```text
+ /// curl http://localhost:8000/graphql
+ /// -H 'authorization: Bearer ***'
+ /// -H 'content-type: application/json'
+ /// -d '{"query":"{users(limit: 2) { id, email, password, isAdmin }}"}'
+ /// ```
async fn users<'ctx>(
&self,
ctx: &Context<'ctx>,
@@ -22,6 +30,14 @@ impl Query {
}
/// Returns all the positions
+ ///
+ /// Request example:
+ /// ```text
+ /// curl http://localhost:8000/graphql
+ /// -H 'authorization: Bearer ***'
+ /// -H 'content-type: application/json'
+ /// -d '{"query":"{positions {id, userId, createdAt, latitude, longitude, movingActivity}}"}'
+ /// ```
async fn positions<'ctx>(
&self,
ctx: &Context<'ctx>,
@@ -34,6 +50,14 @@ impl Query {
/// Returns all the last positions for each user.
/// It is restricted to only admin users.
+ ///
+ /// Request example:
+ /// ```text
+ /// curl http://localhost:8000/graphql
+ /// -H 'authorization: Bearer ***'
+ /// -H 'content-type: application/json'
+ /// -d '{"query":"lastPositions(movingActivity: IN_VEHICLE) {id, userId, createdAt, latitude, longitude, movingActivity}}"}'
+ /// ```
async fn last_positions<'ctx>(
&self,
ctx: &Context<'ctx>,
@@ -45,6 +69,14 @@ impl Query {
}
/// Returns all the positions
+ ///
+ /// Request example:
+ /// ```text
+ /// curl http://localhost:8000/graphql
+ /// -H 'authorization: Bearer ***'
+ /// -H 'content-type: application/json'
+ /// -d '{"query":"{alerts(id: 12) {id, userId, createdAt, area, extendedArea, level}}"}'
+ /// ```
async fn alerts<'ctx>(
&self,
ctx: &Context<'ctx>,