Including multiple tables on prisma

Is there a way to include more than 1 relation in a prisma query?

When I write:
 include: {
      foo: true,
    },


It works, but it fails if I add another:

 include: {
      foo: true,
      bar: true
    },
Was this page helpful?