Hi All, I have a Link ,Offer and Comment Model. A...
# prisma-whats-new
e
Hi All, I have a Link ,Offer and Comment Model. A link has many offers, and each offer has many comments. I added isDeleted:boolean to the three. however how do I filter Offers and Comments that are deleted? type Link @model { offers: [Offer!]! @relation(name: "LinksOffer") ... } type Offer @model { id: ID! @isUnique comments: [Comment!]! @relation(name: "OfferComments") ... }