Skip to content

Love and Hate Query

Edit page

The + and - operators, select documents based on the presence or absence of specified terms.

The following matches all documents with the phrase “adventurous nature” but not ambitious; and:

SEARCH /bank/
{
"_query": {
"personality": "\"adventurous nature\" -ambitious"
}
}