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,
);
TIP
About more pagination see 👉 Pagination Prisma documentation.