Javascript Library for Rendering GraphQL Query Output

Can anyone recommend any Javascript Library or other tools for rendering the output of a GraphQL query?

I realize that the map() and flatten() methods in Javascript can be helpful for transforming the JSON output of GraphQL into a table. But that can get a bit complex particularly when there are nested data structures and blank elements. Is there some existing tool or library which helps with this?

I think the term for what I am seeking is a "data grid." There are any number of Javascript Grid packages which will nicely display JSON data in a table - gridjs is one of them.

But the output of a GraphQL query can be a complex object rather than a basic key:value structure and that is not straightforward for most grid packages to parse.

Is there an existing Javascript tool which can handle these complexities and create a nice tabular display of most GraphQL query output?