movio / bramble

A federated GraphQL API gateway
https://movio.github.io/bramble/
MIT License
497 stars 55 forks source link

fix bubble up nullable null array item #271

Open benzolium opened 1 month ago

benzolium commented 1 month ago

Fix case when there is a nullable null value in array item:

type Gizmo {
    id: ID!
    color: String!
}
type Query {
    gizmos: [Gizmo]!
}
{
  "gizmos": [
      { "id": "GIZMO1", "color": "RED" },
      null,
      { "id": "GIZMO2", "color": "GREEN" }
  ]
}