From d1160f2aa59db4489aad506aaa063be4966609ce Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 23 Aug 2024 22:37:46 +0200 Subject: Add `lastPositions` query with filter by `movingActivity` param --- src/graphql/query.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/graphql/query.rs') diff --git a/src/graphql/query.rs b/src/graphql/query.rs index 9a7ac87..c751543 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -31,4 +31,16 @@ impl Query { ) -> Result>, String> { position::get_positions(ctx, user_id, limit, offset).await } + + /// Returns all the last positions for each user. + /// It is restricted to only admin users. + async fn last_positions<'ctx>( + &self, + ctx: &Context<'ctx>, + #[graphql(desc = "Filter by moving activity")] moving_activity: Option< + position::MovingActivity, + >, + ) -> Result>, String> { + position::last_positions(ctx, moving_activity).await + } } -- cgit v1.2.3-18-g5258