Thomas Morice
08/21/2022, 4:53 PMnumber
. I basically want to filter from an input field, kind of like a contains
but for a number.. Is that something we can do by any chance?
Thanks in advance 🙂William GM
08/21/2022, 7:40 PMprisma.table.findMany({
where: { num: { lte: 100 }, num: { gte: 100 } },
});
William GM
08/21/2022, 7:41 PMBETWEEN
operatorThomas Morice
08/21/2022, 7:46 PMWilliam GM
08/21/2022, 7:47 PMNurul
08/22/2022, 11:05 AM