I put 2 documents in Elasticsearch :
curl -XPUT \"http://localhost:9200/vehicles/vehicle/1\" -d\' { \"model\": \"Classe A\" }\' curl -XPUT \"http://loca
use match phrase query as mentioned below
GET /company/employee/_search { "query" : { "match_phrase" : { "about" : "rock climbing" } } }