diff options
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs index 254dab6..0e19771 100644 --- a/src/graphql/query.rs +++ b/src/graphql/query.rs @@ -10,7 +10,12 @@ impl Query { } /// Returns all the users - async fn users<'ctx>(&self, ctx: &Context<'ctx>) -> Result<Option<Vec<user::User>>, String> { - user::get_users(ctx).await + async fn users<'ctx>( + &self, + ctx: &Context<'ctx>, + #[graphql(desc = "Limit results")] limit: Option<i64>, + #[graphql(desc = "Offset results")] offset: Option<i64>, + ) -> Result<Option<Vec<user::User>>, String> { + user::get_users(ctx, limit, offset).await } } |