Including multiple tables on prisma
Is there a way to include more than 1 relation in a prisma query?
When I write:
It works, but it fails if I add another:
When I write:
It works, but it fails if I add another:
include: {
foo: true,
}, include: {
foo: true,
bar: true
},