Fix typo in query-dsl doc page (#6228)
Signed-off-by: Prabhu Pant <prabhupant09@gmail.com>
This commit is contained in:
parent
05e44c0730
commit
849e9ac3c6
|
@ -50,7 +50,7 @@ You can use query string syntax in the following cases:
|
|||
GET _search?q=wind
|
||||
```
|
||||
|
||||
A query string consists of _terms_ and _operators_. A term is a single word (for example, in the query `wind rises`, the terms are `wind` and `rises`). If several terms are surrounded by quotation marks, they are treated as one phrase where words are marched in the order they appear (for example, `"wind rises"`). Operators (such as `OR`, `AND`, and `NOT`) specify the Boolean logic used to interpret text in the query string.
|
||||
A query string consists of _terms_ and _operators_. A term is a single word (for example, in the query `wind rises`, the terms are `wind` and `rises`). If several terms are surrounded by quotation marks, they are treated as one phrase where words are matched in the order they appear (for example, `"wind rises"`). Operators (such as `OR`, `AND`, and `NOT`) specify the Boolean logic used to interpret text in the query string.
|
||||
|
||||
The examples in this section use an index containing the following mapping and documents:
|
||||
|
||||
|
@ -645,4 +645,4 @@ Parameter | Data type | Description
|
|||
`time_zone` | String | Specifies the number of hours to offset the desired time zone from `UTC`. You need to indicate the time zone offset number if the query string contains a date range. For example, set `time_zone": "-08:00"` for a query with a date range such as `"query": "wind rises release_date[2012-01-01 TO 2014-01-01]"`). The default time zone format used to specify number of offset hours is `UTC`.
|
||||
|
||||
Query string queries may be internally converted into [prefix queries]({{site.url}}{{site.baseurl}}/query-dsl/term/prefix/). If [`search.allow_expensive_queries`]({{site.url}}{{site.baseurl}}/query-dsl/index/#expensive-queries) is set to `false`, prefix queries are not executed. If `index_prefixes` is enabled, the `search.allow_expensive_queries` setting is ignored and an optimized query is built and executed.
|
||||
{: .important}
|
||||
{: .important}
|
||||
|
|
Loading…
Reference in New Issue