You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _query-dsl/match-all.md
+11-1
Original file line number
Diff line number
Diff line change
@@ -28,4 +28,14 @@ GET _search
28
28
}
29
29
}
30
30
```
31
-
{% include copy-curl.html %}
31
+
{% include copy-curl.html %}
32
+
33
+
34
+
## Parameters
35
+
36
+
Both the matchall and match none queries accepts the following parameters. All parameters are optional.
37
+
38
+
Parameter | Data type | Description
39
+
:--- | :--- | :---
40
+
`boost` | Floating-point | A floating-point value that specifies the weight of this field toward the relevance score. Values above 1.0 increase the field’s relevance. Values between 0.0 and 1.0 decrease the field’s relevance. Default is 1.0.
41
+
`_name` | String | The name of the query for query tagging. Optional.
Copy file name to clipboardExpand all lines: _query-dsl/term/term.md
+1
Original file line number
Diff line number
Diff line change
@@ -98,4 +98,5 @@ Parameter | Data type | Description
98
98
:--- | :--- | :---
99
99
`value` | String | The term to search for in the field specified in `<field>`. A document is returned in the results only if its field value exactly matches the term, with the correct spacing and capitalization.
100
100
`boost` | Floating-point | A floating-point value that specifies the weight of this field toward the relevance score. Values above 1.0 increase the field’s relevance. Values between 0.0 and 1.0 decrease the field’s relevance. Default is 1.0.
101
+
`_name` | String | The name of the query for query tagging. Optional.
101
102
`case_insensitive` | Boolean | If `true`, allows case-insensitive matching of the value with the indexed field values. Default is `false` (case sensitivity is determined by the field's mapping).
Copy file name to clipboardExpand all lines: _query-dsl/term/terms.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ Parameter | Data type | Description
39
39
:--- | :--- | :---
40
40
`<field>` | String | The field in which to search. A document is returned in the results only if its field value exactly matches at least one term, with the correct spacing and capitalization.
41
41
`boost` | Floating-point | A floating-point value that specifies the weight of this field toward the relevance score. Values above 1.0 increase the field’s relevance. Values between 0.0 and 1.0 decrease the field’s relevance. Default is 1.0.
42
+
`_name` | String | The name of the query for query tagging. Optional.
42
43
`value_type` | String | Specifies the types of values used for filtering. Valid values are `default` and `bitmap`. If omitted, the value defaults to `default`.
43
44
44
45
## Terms lookup
@@ -250,7 +251,7 @@ Parameter | Data type | Description
250
251
`id` | String | The document ID of the document from which to fetch field values. Required.
251
252
`path` | String | The name of the field from which to fetch field values. Specify nested fields using dot path notation. Required.
252
253
`routing` | String | Custom routing value of the document from which to fetch field values. Optional. Required if a custom routing value was provided when the document was indexed.
253
-
`boost` | Floating-point | A floating-point value that specifies the weight of this field toward the relevance score. Values above 1.0 increase the field’s relevance. Values between 0.0 and 1.0 decrease the field’s relevance. Default is 1.0.
254
+
`store` | Boolean | Whether to perform the lookup on the stored field instead of `_source`. Optional.
0 commit comments