Does anyone know what this error means and how to ...
# prisma-client
t
Does anyone know what this error means and how to fix?
Please note that it is not possible at the moment to have a null-cursor, or a cursor and orderBy combination that not stable (unique).
In my case, the cursor is not null, so assuming it’s from “a cursor and orderBy combination” My query is…
Copy code
prisma.member.count({
  where: {
    app: { id }
  },
  orderBy: {
   createdAt: "desc"
  },
  cursor: {
    id: after_cursor
  }
})