[questions][fix] fix pagination off by one (#425)

pull/429/head
hpkoh 2 years ago committed by GitHub
parent 0d53dab7a8
commit c118ed59d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -77,7 +77,6 @@ export const questionsQuestionEncounterRouter = createProtectedRouter()
},
})
.mutation('update', {
//
input: z.object({
companyId: z.string().optional(),
id: z.string(),

@ -14,7 +14,7 @@ export const questionsQuestionRouter = createProtectedRouter()
cursor: z
.object({
idCursor: z.string().optional(),
lastSeenCursor: z.date().optional(),
lastSeenCursor: z.date().nullish().optional(),
upvoteCursor: z.number().optional(),
})
.nullish(),
@ -49,8 +49,6 @@ export const questionsQuestionRouter = createProtectedRouter()
},
];
const toSkip = cursor ? 1 : 0;
const questionsData = await ctx.prisma.questionsQuestion.findMany({
cursor:
cursor !== undefined
@ -81,7 +79,6 @@ export const questionsQuestionRouter = createProtectedRouter()
votes: true,
},
orderBy: sortCondition,
skip: toSkip,
take: input.limit + 1,
where: {
...(input.questionTypes.length > 0

Loading…
Cancel
Save