@@ -7,11 +7,34 @@ parameter also applies to <<indices-aliases,index aliases>> that point to a
7
7
missing or closed index.
8
8
end::allow-no-indices[]
9
9
10
+ tag::analyzer[]
11
+ analyzer`::
12
+ (Optional, string) Defines the analyzer to use for the query string.
13
+ end::analyzer[]
14
+
15
+ tag::analyze_wildcard[]
16
+ `analyze_wildcard` ::
17
+ (Optional, boolean) If `true` , wildcard and prefix queries will also be
18
+ analyzed. Defaults to `false` .
19
+ end::analyze_wildcard[]
20
+
10
21
tag::bytes[]
11
22
`bytes` ::
12
23
(Optional, <<byte-units,byte size units>>) Unit used to display byte values.
13
24
end::bytes[]
14
25
26
+ tag::default_operator[]
27
+ `default_operator` ::
28
+ (Optional, string) The default operator for query string query: AND or OR.
29
+ Defaults to `OR` .
30
+ end::default_operator[]
31
+
32
+ tag::df[]
33
+ `df` ::
34
+ (Optional, string) Defines the field to use as default where no field prefix is
35
+ given in the query string.
36
+ end::df[]
37
+
15
38
tag::expand-wildcards[]
16
39
`expand_wildcards` ::
17
40
+
@@ -44,6 +67,11 @@ tag::flat-settings[]
44
67
`false` .
45
68
end::flat-settings[]
46
69
70
+ tag::from[]
71
+ `from` ::
72
+ (Optional, integer) Defines the starting offset. Defaults to `0` .
73
+ end::from[]
74
+
47
75
tag::help[]
48
76
`help` ::
49
77
(Optional, boolean) If `true` , the response returns help information. Defaults
@@ -88,6 +116,12 @@ tag::index[]
88
116
used to limit the request.
89
117
end::index[]
90
118
119
+ tag::lenient[]
120
+ `lenient` ::
121
+ (Optional, boolean) If `true` , format-based query failures (such as
122
+ providing text to a numeric field) will be ignored. Defaults to `false` .
123
+ end::lenient[]
124
+
91
125
tag::local[]
92
126
`local` ::
93
127
(Optional, boolean) If `true` , the request retrieves information from the local
@@ -106,18 +140,70 @@ tag::node-id[]
106
140
returned information.
107
141
end::node-id[]
108
142
143
+ tag::search-q[]
144
+ `q` ::
145
+ (Optional, string) Query in the Lucene query string syntax.
146
+ end::search-q[]
147
+
109
148
tag::cat-s[]
110
149
`s` ::
111
150
(Optional, string) Comma-separated list of column names or column aliases used
112
151
to sort the response.
113
152
end::cat-s[]
114
153
154
+ tag::search_type[]
155
+ `search_type` ::
156
+ (Optional, string) Defines the type of the search operation. Available options:
157
+ * `query_then_fetch`
158
+ * `dfs_query_then_fetch`
159
+ end::search_type[]
160
+
161
+ tag::search_timeout[]
162
+ `search_timeout` ::
163
+ (Optional, <<time-units, time units>> Explicit timeout for each search
164
+ request. Defaults to no timeout.
165
+ end::search_timeout[]
166
+
167
+ tag::sort[]
168
+ `sort` ::
169
+ (Optional, string) A comma-separated list of <field >:<direction > pairs.
170
+ end::sort[]
171
+
172
+ tag::source[]
173
+ `_source` ::
174
+ (Optional, string) True or false to return the `_source` field or not, or a
175
+ list of fields to return.
176
+ end::source[]
177
+
178
+ tag::source_excludes[]
179
+ `_source_excludes` ::
180
+ (Optional, string) A list of fields to exclude from the returned `_source`
181
+ field.
182
+ end::source_excludes[]
183
+
184
+ tag::source_includes[]
185
+ `_source_includes` ::
186
+ (Optional, string) A list of fields to extract and return from the `_source`
187
+ field.
188
+ end::source_includes[]
189
+
190
+ tag::terminate_after[]
191
+ `terminate_after` ::
192
+ (Optional, integer) The maximum number of documents to collect for each shard,
193
+ upon reaching which the query execution will terminate early.
194
+ end::terminate_after[]
195
+
115
196
tag::cat-v[]
116
197
`v` ::
117
198
(Optional, boolean) If `true` , the response includes column headings. Defaults
118
199
to `false` .
119
200
end::cat-v[]
120
201
202
+ tag::version[]
203
+ `version` ::
204
+ (Optional, boolean) If `true` , returns the document version as part of a hit.
205
+ end::version[]
206
+
121
207
tag::doc-pipeline[]
122
208
`pipeline` ::
123
209
(Optional, string) ID of the pipeline to use to preprocess incoming documents.
0 commit comments