Seddryck / NBi.Elasticsearch

Extension for NBi to connect to an Elasticsearch instance and execute tests defined within NBi on it (including queries written with Query DSL provided by Elasticsearch)
Apache License 2.0
1 stars 0 forks source link

Support results from a query match_all #2

Closed Seddryck closed 6 years ago

Seddryck commented 6 years ago

NBi should be able to execute queries on Elasticsearch and understand the results if the query is of type match_all

GET bank/_search
          {
             "query": {"match_all": { }}
             , "size": 5
             , "_source": ["gender", "age", "balance"]
             , "sort": [ { "balance" : {"order" : "desc"}}]
          }