Vega Lite Help - Can't bring in two dataset values

I’m having trouble addressing two dataset queries in the custom chart.

Can anyone see where I’m going wrong here:

{
  "width": {{block.width}},
  "height": {{block.height}},
  "autosize": {
    "type": "fit",
    "contains": "padding"
  },
  "data": {
    "values": [
      {"category": "Test", "value":"gauge-1"},
      {"category": "Test2", "value":"gauge-0"}
    ]
  },
  "mark": {"type": "arc", "innerRadius": 100},
  "encoding": {
    "theta": {"field": "value", "type": "quantitative"},
    "color": {"field": "category", "type": "nominal"}
  }
}```

It looks like you are trying to build your data inline by referencing values from two separate gauge queries, which is not functionality we expose in this block. I will look into getting that added.

You may be able to use some of Vega-Lite’s Transform operations to combine the values of your two named datasets and then reference that when building out your chart.