From 8738cf2c6b1ce9f99e3399f35ba9f49832ffed52 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 22 Aug 2024 21:29:37 +0200 Subject: Add pagination Query is `users(limit: X offset Y)` with defaults X=20 Y=0 --- src/graphql/query.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/graphql/query.rs') 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>, String> { - user::get_users(ctx).await + async fn users<'ctx>( + &self, + ctx: &Context<'ctx>, + #[graphql(desc = "Limit results")] limit: Option, + #[graphql(desc = "Offset results")] offset: Option, + ) -> Result>, String> { + user::get_users(ctx, limit, offset).await } } -- cgit v1.2.3-18-g5258