I have the following models:
model User {
id String @id
username String
displayName String
wishlist String
groups Group[]
}
model Group {
id String @id
name String
members User[]
}
When a user looks at the wishlists page, it should contain a list of all users who are in any of the groups that the user is in. What's the best way to accomplish this?
