Files
kustomize/api/internal/crawl/search_cmds/id.md
2020-02-05 11:04:59 -08:00

287 B

Find the document with the given _id:

curl -s -X GET "${ElasticSearchURL}:9200/${INDEXNAME}/_search?pretty" -H 'Content-Type: application/json' -d'
{
  "query": {
    "terms": {
      "_id": [ "b3a03f3327841617db696e2d6abc30e1a1bd653f1a2bbce05637f7dcae1a43f7" ] 
    }
  }
}
'