Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Latest commit

 

History

History
21 lines (18 loc) · 381 Bytes

File metadata and controls

21 lines (18 loc) · 381 Bytes

Example Debug Queries

To assert that everything works

curl -XGET "http://localhost:9200/ehr-data-index/_mapping" | jq

and

curl -XGET "http://localhost:9200/ehr-data-index/_search" -H 'Content-Type: application/json' -d'
{
  "query": {
    "match": {
      "body": {
        "query": "<your query here>"
      }
    }
  }
}' | jq