Introduction
Prisma Client extension for pagination.
Features
Installation
npm i prisma-extension-pagination
Usage
Install extension to all models
import { PrismaClient } from "@prisma/client";
import pagination from "prisma-extension-pagination";
const prisma = new PrismaClient().$extends(pagination);
Install extension on certain model
import { PrismaClient } from "@prisma/client";
import { paginate } from "prisma-extension-pagination";
const prisma = new PrismaClient().$extends({
model: {
user: {
paginate,
}
}
});
Page number pagination uses limit
to select a limited range and page
to load a specific page of results.
Load first page
const [users, meta] = prisma.user
.paginate({
select: {
id: true,
}
})
.withPages({
limit: 10,
});
{
currentPage: 1,
isFirstPage: true,
isLastPage: false,
previousPage: null,
nextPage: 2,
}
Load specific page
const [users, meta] = prisma.user
.paginate()
.withPages({
limit: 10,
page: 2,
});
{
currentPage: 2,
isFirstPage: false,
isLastPage: false,
previousPage: 1,
nextPage: 3,
}
Calculate page count
const [users, meta] = prisma.user
.paginate()
.withPages({
limit: 10,
page: 2,
includePageCount: true,
});
{
currentPage: 2,
isFirstPage: false,
isLastPage: false,
previousPage: 1,
nextPage: 3,
pageCount: 10,
totalCount: 100,
}
Cursor-based pagination uses limit
to select a limited range
and before
or after
to return a set of results before or after a given cursor.
Load first records
const [users, meta] = prisma.user
.paginate({
select: {
id: true,
}
})
.withCursor({
limit: 10,
});
{
hasPreviousPage: false,
hasNextPage: true,
startCursor: "1",
endCursor: "10"
}
Load next page
const [users, meta] = prisma.user
.paginate()
.withCursor({
limit: 10,
after: "10"
});
{
hasPreviousPage: true,
hasNextPage: true,
startCursor: "11",
endCursor: "20"
}
Load previous page
const [users, meta] = prisma.user
.paginate()
.withCursor({
limit: 10,
before: "11"
});
{
hasPreviousPage: false,
hasNextPage: true,
startCursor: "1",
endCursor: "10"
}
Custom cursor
const getCustomCursor = (postId: number, userId: number) =>
[postId, userId].join(":");
const [results, meta] = await prisma.postOnUser
.paginate({
select: {
postId: true,
userId: true,
},
})
.withCursor({
limit: 10,
after: getCustomCursor(1, 1),
getCursor({ postId, userId }) {
return getCustomCursor(postId, userId)
},
parseCursor(cursor) {
const [postId, userId] = cursor.split(":");
return {
userId_postId: {
postId: parseInt(postId),
userId: parseInt(userId),
},
};
},
});
{
hasPreviousPage: false,
hasNextPage: true,
startCursor: "1:2",
endCursor: "1:11"
}
License
This project is licensed under the terms of the MIT license.