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 <img width="1108" alt="image" src="https://github.com/user-attachments/assets/9b880d87-b1fc-493f-b01e-37215317eada"> I believe this is related to [this code](https://github.com/anvilco/spectaql/blob/main/src/spectaql/type-helpers.js#L83), which only has handling for standard arrays, and not nested arrays.