perf: replace notIn with equals on booking (#8303)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
This commit is contained in:
Yagiz Nizipli
2023-04-17 16:54:14 -03:00
committed by GitHub
co-authored by Peer Richelsen Keith Williams
parent da3ee3f1fe
commit b5c993e153
@@ -115,7 +115,7 @@ export const bookingsRouter = router({
OR: [
{
recurringEventId: { not: null },
status: { notIn: [BookingStatus.PENDING, BookingStatus.CANCELLED, BookingStatus.REJECTED] },
status: { equals: BookingStatus.ACCEPTED },
},
{
recurringEventId: { equals: null },