Skip to content

Pagination

Offset pagination uses skip and take to skip a certain number of results and select a limited range. The following query skips the first 3 Post records and returns records 4 - 7:

dart
final results = await prisma.user.findMany(
  take: 4,
  skip: 3,
);

Offset pagination

TIP

About more pagination see 👉 Pagination Prisma documentation.

Released under the BSD-3-Clause License