From 0cebbf162449325addd713acb74952e43f66b438 Mon Sep 17 00:00:00 2001 From: David Pilato Date: Tue, 8 Apr 2014 10:55:26 +0200 Subject: [PATCH] Text Query has been replaced by Match Query Closes #5727. --- README.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.textile b/README.textile index fcf53bdba8c..8330e3b7b4e 100644 --- a/README.textile +++ b/README.textile @@ -86,7 +86,7 @@ We can also use the JSON query language Elasticsearch provides instead of a quer curl -XGET 'http://localhost:9200/twitter/tweet/_search?pretty=true' -d ' { "query" : { - "text" : { "user": "kimchy" } + "match" : { "user": "kimchy" } } }'