Coggle requires JavaScript to display documents.
ES Commands (Query DSL (Full text queries (match
match_phrase
match…
ES Commands (Query DSL, Mapping, elasticsearch --cluster.name <name> --node.name <name>, curl 'nodeIP:port/_cat/health?v'
curl 'nodeIP:port/_cat/nodes?v'
curl 'nodeIP:port/_cat/indices?v', Create Index:
curl -XPUT 'nodeIP:port/<index>?pretty', Index a Document:
curl -XPUT 'nodeIP:port/<index>/<type>/<id>?pretty' -d
'{
"name": "John Doe"
}', Query a Document
curl -XGET 'nodeIP:port/<index>/<type>/<id>?pretty', Delete a Index
curl -XDELETE 'nodeIP:port/<index>?pretty', Index without ID
curl -XPOST 'nodeIP:port/<index>/<type>', Search all document
curl 'localhost:9200/bank/_search?q=*', /_validate/query?explain)