Michael Aubry
07/24/2020, 12:53 AMjanpio
Karan
07/24/2020, 7:20 PMMichael Aubry
07/24/2020, 7:20 PMMichael Aubry
07/24/2020, 7:23 PMt.list.field("stories", {
type: "story",
resolve(root: any, args: any, ctx: any) {
return ctx.prisma["ckcyaq05922nb0193v2fdird7"]
.findMany({
where: { user: { id: root.id } }
})
.then((d: any) =>
d.map((e: any) =>
ctx.prisma.story
.findOne({
where: { id: e.b }
})
.then((f: any) => f)
)
);
}
});janpio
Michael Aubry
07/24/2020, 7:25 PMmodel ckcyaq05922nc0193n2nyokuv {
id String @id
a String
b String
story story @relation(fields: [a], references: [id])
video video @relation(fields: [b], references: [id])
@@index([a], name: "idx_17206_a")
@@index([b], name: "idx_17206_b")
@@unique([a, b], name: "idx_17206_ab_unique")
}