Ashiqur Rahman
05/28/2020, 1:49 PMschema.prisma
file?
type Post {
id: ID! @unique
comments: [Comment!]! @relation(name: "CommentToPost", onDelete: CASCADE)
updatedAt: DateTime!
createdAt: DateTime!
}
Ryan
05/28/2020, 2:06 PMprisma introspect
to generate the schema accordingly.
The feature request for this can be tracked here.Ahmed
05/28/2020, 2:41 PM