While reviewing #1295, I noticed that we generate the *Connection
types like so:
type BookConnection {
edges: [BookEdge]!
pageInfo: PageInfo!
}
Per specification, the Edges field is a nullable list.
We should update the schema generation part as well as the *Connection
data fetcher decorator to reflect this.