@@ -168,23 +168,102 @@ export class QueryContainer {
168
168
* @doc_id query-dsl-geo-shape-query
169
169
*/
170
170
geo_shape ?: GeoShapeQuery
171
+ /**
172
+ * Returns parent documents whose joined child documents match a provided query.
173
+ * @doc_id query-dsl-has-child-query
174
+ */
171
175
has_child ?: HasChildQuery
176
+ /**
177
+ * Returns child documents whose joined parent document matches a provided query.
178
+ * @doc_id query-dsl-has-parent-query
179
+ */
172
180
has_parent ?: HasParentQuery
181
+ /**
182
+ * Returns documents based on their IDs.
183
+ * This query uses document IDs stored in the `_id` field.
184
+ * @doc_id query-dsl-ids-query
185
+ */
173
186
ids ?: IdsQuery
187
+ /**
188
+ * Returns documents based on the order and proximity of matching terms.
189
+ * @doc_id query-dsl-intervals-query
190
+ */
174
191
intervals ?: SingleKeyDictionary < Field , IntervalsQuery >
192
+ /**
193
+ * Returns documents that match a provided text, number, date or boolean value.
194
+ * The provided text is analyzed before matching.
195
+ * @doc_id query-dsl-match-query
196
+ */
175
197
match ?: SingleKeyDictionary < Field , MatchQuery >
198
+ /**
199
+ * Matches all documents, giving them all a `_score` of 1.0.
200
+ * @doc_id query-dsl-match-all-query
201
+ */
176
202
match_all ?: MatchAllQuery
203
+ /**
204
+ * Analyzes its input and constructs a `bool` query from the terms.
205
+ * Each term except the last is used in a `term` query.
206
+ * The last term is used in a prefix query.
207
+ * @doc_id query-dsl-match-bool-prefix-query
208
+ */
177
209
match_bool_prefix ?: SingleKeyDictionary < Field , MatchBoolPrefixQuery >
210
+ /**
211
+ * Matches no documents.
212
+ * @doc_id query-dsl-match-none-query
213
+ */
178
214
match_none ?: MatchNoneQuery
215
+ /**
216
+ * Analyzes the text and creates a phrase query out of the analyzed text.
217
+ * @doc_id query-dsl-match-query-phrase
218
+ */
179
219
match_phrase ?: SingleKeyDictionary < Field , MatchPhraseQuery >
220
+ /**
221
+ * Returns documents that contain the words of a provided text, in the same order as provided.
222
+ * The last term of the provided text is treated as a prefix, matching any words that begin with that term.
223
+ * @doc_id query-dsl-match-query-phrase-prefix
224
+ */
180
225
match_phrase_prefix ?: SingleKeyDictionary < Field , MatchPhrasePrefixQuery >
226
+ /**
227
+ * Returns documents that are "like" a given set of documents.
228
+ * @doc_id query-dsl-mlt-query
229
+ */
181
230
more_like_this ?: MoreLikeThisQuery
231
+ /**
232
+ * Enables you to search for a provided text, number, date or boolean value across multiple fields.
233
+ * The provided text is analyzed before matching.
234
+ * @doc_id query-dsl-multi-match-query
235
+ */
182
236
multi_match ?: MultiMatchQuery
237
+ /**
238
+ * Wraps another query to search nested fields.
239
+ * If an object matches the search, the nested query returns the root parent document.
240
+ * @doc_id query-dsl-nested-query
241
+ */
183
242
nested ?: NestedQuery
243
+ /**
244
+ * Returns child documents joined to a specific parent document.
245
+ * @doc_id query-dsl-parent-id-query
246
+ */
184
247
parent_id ?: ParentIdQuery
248
+ /**
249
+ * Matches queries stored in an index.
250
+ * @doc_id query-dsl-percolate-query
251
+ */
185
252
percolate ?: PercolateQuery
253
+ /**
254
+ * Promotes selected documents to rank higher than those matching a given query.
255
+ * @doc_id query-dsl-pinned-query
256
+ */
186
257
pinned ?: PinnedQuery
258
+ /**
259
+ * Returns documents that contain a specific prefix in a provided field.
260
+ * @doc_id query-dsl-prefix-query
261
+ */
187
262
prefix ?: SingleKeyDictionary < Field , PrefixQuery >
263
+ /**
264
+ * Returns documents based on a provided query string, using a parser with a strict syntax.
265
+ * @doc_id query-dsl-query-string-query
266
+ */
188
267
query_string ?: QueryStringQuery
189
268
range ?: SingleKeyDictionary < Field , RangeQuery >
190
269
rank_feature ?: RankFeatureQuery
0 commit comments