AvitalTamir / cyphernetes

A Kubernetes Query Language
https://cyphernet.es
Apache License 2.0
527 stars 12 forks source link

Improved JSON output #57

Closed AvitalTamir closed 11 months ago

AvitalTamir commented 11 months ago

3 major changes:

"d": {
  "metadata": {
    "name": [
      "foo",
      "bar",
    ]
  }
}

instead of this:

"d": [
  {
    "metadata": {
      "name": "foo"
    }
  },
  {
    "metadata": {
      "name": "bar"
    }
  }  
]

This PR fixes this issue