chengpohi / edql

Elasticsearch Query GUI Client
https://plugins.jetbrains.com/plugin/16364-elasticsearch-query--edql
Apache License 2.0
35 stars 1 forks source link

Allow selection of multiple index patterns #34

Closed bilak closed 7 months ago

bilak commented 7 months ago

In Kibana, it's possible to use following queries (note the commas)

GET _cat/indices/*force*,*vehicle*,*duty*,*person*,*provider*?h=idx

POST force*,vehicle*/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "terms": {
            "id": [
              "6afa60a0-3cf9-47b9-bf32-730b35d37b9a"
            ],
            "boost": 1.0
          }
        }
      ]
    }
  }
}

Would it be possible to use same syntax in this plugin? Thanks

chengpohi commented 7 months ago

Got it, I will try to achieve this pattern parser in next version release.

chengpohi commented 7 months ago

Hi @bilak this feature is added to v1.10.2, and also you can download from Jetbrains market v1.10.2.

Thanks your feedback, If you meet any issue please let me know.