GraphQL - Type Relationships
This GraphQL schema snippet has an error for one-to-many relationship. What is wrong?
type User { id: ID! name: String! posts: Post } type Post { id: ID! content: String! userId: ID! }