type Comments @embedded { comments: [Comment]! }...
# orm-help
p
type Comments @embedded { comments: [Comment]! } type Comment @embedded { createdBy: User! @relation(name: “CommentRelation”, link: INLINE, onDelete: SET_NULL) comment: String! }