From b47573a879d699d1c87e3b7b56be51bfded3182f Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 3 Sep 2024 10:03:26 +0200 Subject: Add examples on doc --- src/graphql/query.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'src/graphql/query.rs') 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>, -- cgit v1.2.3-18-g5258