const events = await prisma.scheduledEvent.findMany({
where: {
course: {
title: {
contains: "Math",
},
},
},
include: {
course: true,
},
});
const courses = await prisma.course.findMany({
where: {
title: {
contains: "Math",
},
},
});
const events = await prisma.scheduledEvent.findMany({
where: {
course: {
title: {
contains: "Math",
},
},
},
include: {
course: true,
},
});
const courses = await prisma.course.findMany({
where: {
title: {
contains: "Math",
},
},
});