GraphQL - Type Relationships
Consider this GraphQL type definition:
What is the main problem with this design if a user can have many posts?
type User {
id: ID!
posts: Post
}
type Post {
id: ID!
content: String!
}What is the main problem with this design if a user can have many posts?
