type Group {
name
members
posts
}
name: string @index(hash) .
members: [uid] @reverse @count .
posts: [uid] @reverse @count .
Each group has many members and posts, the number is very large, and may even exceed one million. When I delete this group, I must delete all the members and posts of this group. What should I do?