From b6b57daacc59ec0d7c9ab143c0f28bafd8cda546 Mon Sep 17 00:00:00 2001 From: Bastien Malahieude Date: Tue, 16 Aug 2022 10:17:31 +0200 Subject: [PATCH 1/2] Update documentation for cursor based pagination Add a disclaimer that uuid based pagination does not work --- core/pagination.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core/pagination.md b/core/pagination.md index d2f18f6b32c..c4d293a17a6 100644 --- a/core/pagination.md +++ b/core/pagination.md @@ -337,6 +337,7 @@ class Book // ... } ``` +Note : The cursor-based pagination is only available if you are using numeric based ids. `uuid` support does not exist yet. To know more about cursor-based pagination take a look at [this blog post on medium (draft)](https://medium.com/@sroze/74fd1d324723). From 26e951c5ca48c548ba93ea1d03d722b6ec134251 Mon Sep 17 00:00:00 2001 From: Bastien Malahieude Date: Tue, 14 Jan 2025 16:30:06 +0100 Subject: [PATCH 2/2] Accept review Co-authored-by: Vincent Amstoutz --- core/pagination.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/pagination.md b/core/pagination.md index c4d293a17a6..ec6d405eb99 100644 --- a/core/pagination.md +++ b/core/pagination.md @@ -337,7 +337,9 @@ class Book // ... } ``` -Note : The cursor-based pagination is only available if you are using numeric based ids. `uuid` support does not exist yet. +> [!NOTE] +> The cursor-based pagination is only available if you are using numeric-based ids. +> `uuid` support does not exist yet. To know more about cursor-based pagination take a look at [this blog post on medium (draft)](https://medium.com/@sroze/74fd1d324723).