Signed-off-by: vagimeli <vagimeli@amazon.com> Signed-off-by: vagimeli <vagimeli@amazon.com>
This commit is contained in:
parent
ebe1faeefd
commit
a6f6f98806
|
@ -52,7 +52,7 @@ curl --insecure -XGET -u 'admin:admin' https://<host>:<port>/<index>/_search \
|
|||
}'
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -95,7 +95,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -137,7 +137,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -174,7 +174,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -207,7 +207,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -242,7 +242,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -283,7 +283,7 @@ GET _search
|
|||
}
|
||||
```
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
@ -339,10 +339,10 @@ Special character | Behavior
|
|||
`*` | Acts as a wildcard.
|
||||
`""` | Wraps several terms into a phrase.
|
||||
`()` | Wraps a clause for precedence.
|
||||
`~n` | When used after a term (e.g. `wnid~3`), sets `fuzziness`. When used after a phrase, sets `slop`. See [Options](#options).
|
||||
`~n` | When used after a term (e.g. `wnid~3`), sets `fuzziness`. When used after a phrase, sets `slop`. See [Optional Query Fields](#optional-query-fields).
|
||||
`-` | Negates the term.
|
||||
|
||||
The query accepts the following options. For descriptions of each, see [Options](#options).
|
||||
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).
|
||||
|
||||
```json
|
||||
GET _search
|
||||
|
|
Loading…
Reference in New Issue