Hello. :wave: Can somebody please tell me how the ...
# prisma-whats-new
v
Hello. 👋 Can somebody please tell me how the create mutation will look like on a model (Building) with a relation to a model (Zone) which has a n-2-m relation with itself. type Zone @model { id: ID! @isUnique type: String! name: String! @isUnique createdAt: DateTime! updatedAt: DateTime! buildings: Building @relation(name: "ZoneInBuilding") connectedZones: [Zone!]! @relation(name: "ConnectedZones") } type Building @model { id: ID! @isUnique name: String! @isUnique createdAt: DateTime! updatedAt: DateTime! location: Location @relation(name: "BuildingOnLocation") zones: [Zone!]! @relation(name: "ZoneInBuilding") }