## **Describe the bug** The UQL parser does not render/return a value that is visualized correctly. Other parsers work as expected. ## **Steps to reproduce** Given inline JSON source: ``` { "foo": 1, "bar": 2 } ``` when selecting **UQL** as parser, with query: _(the query can even be omitted)_ ``` parse-json ``` the resulting table output will be: | result | | -------------------- | | { "foo": 1, "bar": 2 } | However, I am expecting the output to be: | foo | bar | | ---- | ---- | | 1 | 2 | This works fine for **Default** and **Backend** parsers. ## **Sample Data** - [Grafana Play - Default](https://play.grafana.org/goto/UqeEIQKHg?orgId=1) - [Grafana Play - Backend](https://play.grafana.org/goto/6VtLSwKHR?orgId=1) - [Grafana Play - UQL](https://play.grafana.org/goto/e8PQSwKNR?orgId=1)