3

I'm trying to do a query on Elasticsearch using the query string interface on a Geolocation. Specifically, I am trying to return all documents within a circle (point with radius). This is clearly possible using the full query DSL based on JSON. However, I can't find the syntax for the same search using query strings in the docs here:

http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-string-syntax

Does this mean geo queries are not supported by query string queries?

Thanks

trim
  • 209
  • 3
  • 9

1 Answers1

2

No. It's not supported as far as I know.

dadoonet
  • 14,109
  • 3
  • 42
  • 49
  • Thanks @dadnoonet. Do you know of any more evidence of this other than the docs link I posted? – trim Oct 17 '14 at 16:50