diff options
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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<i32>, #[graphql(desc = "Limit results")] limit: Option<i64>, #[graphql(desc = "Offset results")] offset: Option<i64>, ) -> Result<Option<Vec<position::Position>>, String> { - position::get_positions(ctx, limit, offset).await + position::get_positions(ctx, user_id, limit, offset).await } } |