[role="xpack"]
[[query-dsl-rule-query]]
=== Rule query
++++
Rule
++++
[WARNING]
====
`rule_query` was renamed to `rule` in 8.15.0.
The old syntax using `rule_query` and `ruleset_id` is deprecated and will be removed in a future release, so it is strongly advised to migrate existing rule queries to the new API structure.
====
[TIP]
====
The rule query is not supported for use alongside reranking.
If you want to use query rules in conjunction with reranking, use the <> instead.
====
Applies <> to the query before returning results.
Query rules can be used to promote documents in the manner of a <> based on matching defined rules, or to identify specific documents to exclude from a contextual result set.
If no matching query rules are defined, the "organic" matches for the query are returned.
All matching rules are applied in the order in which they appear in the query ruleset.
If the same document matches both an `exclude` rule and a `pinned` rule, the document will be excluded.
[NOTE]
====
To use the rule query, you first need a defined set of query rules.
Use the <> to create and manage query rules.
For more information and examples see <>.
====
==== Example request
////
[source,console]
--------------------------------------------------
PUT _query_rules/my-ruleset
{
"rules": [
{
"rule_id": "my-rule1",
"type": "pinned",
"criteria": [
{
"type": "exact",
"metadata": "user_query",
"values": ["puggles"]
}
],
"actions": {
"ids": [ "id1" ]
}
}
]
}
--------------------------------------------------
// TESTSETUP
[source,console]
--------------------------------------------------
DELETE _query_rules/my-ruleset
--------------------------------------------------
// TEARDOWN
////
[source,console]
--------------------------------------------------
GET /_search
{
"query": {
"rule": {
"match_criteria": {
"user_query": "pugs"
},
"ruleset_ids": ["my-ruleset"],
"organic": {
"match": {
"description": "puggles"
}
}
}
}
}
--------------------------------------------------
[[rule-query-top-level-parameters]]
==== Top-level parameters for `rule_query`
`ruleset_ids`::
(Required, array) An array of one or more unique <> ID with query-based rules to match and apply as applicable.
Rulesets and their associated rules are evaluated in the order in which they are specified in the query and ruleset.
The maximum number of rulesets to specify is 10.
`match_criteria`::
(Required, object) Defines the match criteria to apply to rules in the given query ruleset.
Match criteria should match the keys defined in the `criteria.metadata` field of the rule.
`organic`::
(Required, object) Any choice of <> used to return results, that may be modified by matching query rules.
If no query rules are matched and applied, this query will be executed with no modification.