Joseph
04/27/2020, 4:52 AMprisma.query.matches({ where: { endedAt: null } }, info)
This doesn't work for meCristian
04/28/2020, 1:09 AMUser and Post models:
const posts = await prisma.posts.findMany({
where: {
OR: [
{ author: null },
{
title: {
contains: 'Hello',
},
},
],
},
})Joseph
04/28/2020, 5:58 AMfindMany function coming from?