Nested arrays don't render correctly
Opened this issue · 0 comments
mikerjacobi commented
I have a GraphQL type for a Polygon which is a list of points, implemented as an array of array of floats:
type Polygon {
type: String
coordinates: [[Float]]
}
It renders without the nested array
I believe this is related to this code, which only has handling for standard arrays, and not nested arrays.