I have been using prisma-binding npm, I don't know how to get the total matched count of the query in order to perform pagination.
I'm using below code to pull record which working fine. Now i want total number of records.
const users = await prisma.query.users(null,`{id, name}`)
Note: By default prisma returns maximum of 3000 records only, but have 9000 records.