Skip to content

v0.5.0

Compare
Choose a tag to compare
@deptyped deptyped released this 22 Aug 10:04
· 17 commits to main since this release

Breaking change

Default export is now a function that accepts custom defaults.

Simply call the function without arguments if you want to use the extension as before:

import pagination from "prisma-extension-pagination";

-new PrismaClient().$extends(pagination);
+new PrismaClient().$extends(pagination());

What's Changed