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 +++++++-- src/graphql/types/user.rs | 11 +++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) (limited to 'src') 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 } } diff --git a/src/graphql/types/user.rs b/src/graphql/types/user.rs index b675f1f..21554b9 100644 --- a/src/graphql/types/user.rs +++ b/src/graphql/types/user.rs @@ -31,7 +31,11 @@ impl User { } } -pub async fn get_users<'ctx>(ctx: &Context<'ctx>) -> Result>, String> { +pub async fn get_users<'ctx>( + ctx: &Context<'ctx>, + limit: Option, + offset: Option, +) -> Result>, String> { let state = ctx.data::().expect("Can't connect to db"); let client = &*state.client; let auth: &Authentication = ctx.data().unwrap(); @@ -39,7 +43,10 @@ pub async fn get_users<'ctx>(ctx: &Context<'ctx>) -> Result>, S Authentication::NotLogged => Err("Unauthorized".to_string()), Authentication::Logged(_claims) => { let rows = client - .query("SELECT id, email, password, is_admin FROM users", &[]) + .query( + "SELECT id, email, password, is_admin FROM users LIMIT $1 OFFSET $2", + &[&limit.unwrap_or(20), &offset.unwrap_or(0)], + ) .await .unwrap(); -- cgit v1.2.3-18-g5258