super easy one, cant seem to find it though, but i...
# orm-help
j
super easy one, cant seem to find it though, but i know prisma does it. How do i query by something that should be one of a set of values? hypothetical example of finding something with a size of 1,2,3,4 or 5
const res = await prisma.table.findFirst({where: { size: { IN: [1,2,3,4,5] }});
1