From cb1aa9668a967fe875e716469ccf936ed8693ad3 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 23 Aug 2024 22:07:47 +0200 Subject: Filter positions by user id --- src/graphql/query.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/graphql/query.rs') diff --git a/src/graphql/query.rs b/src/graphql/query.rs index a875d25..3d72b2e 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -23,9 +23,10 @@ impl Query { async fn positions<'ctx>( &self, ctx: &Context<'ctx>, + #[graphql(desc = "Filter by user id")] user_id: Option, #[graphql(desc = "Limit results")] limit: Option, #[graphql(desc = "Offset results")] offset: Option, ) -> Result>, String> { - position::get_positions(ctx, limit, offset).await + position::get_positions(ctx, user_id, limit, offset).await } } -- cgit v1.2.3-18-g5258