From 95fca87e9f5fae3283ade00363bfd2d094dd0689 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 24 Aug 2020 13:42:30 -0700 Subject: more test queries --- tests/files/GET_highlight_query.txt | 55 +++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 tests/files/GET_highlight_query.txt (limited to 'tests/files/GET_highlight_query.txt') diff --git a/tests/files/GET_highlight_query.txt b/tests/files/GET_highlight_query.txt new file mode 100644 index 0000000..2540b45 --- /dev/null +++ b/tests/files/GET_highlight_query.txt @@ -0,0 +1,55 @@ +GET /_search +{ + "query": { + "match": { + "comment": { + "query": "foo bar" + } + } + }, + "rescore": { + "window_size": 50, + "query": { + "rescore_query": { + "match_phrase": { + "comment": { + "query": "foo bar", + "slop": 1 + } + } + }, + "rescore_query_weight": 10 + } + }, + "_source": false, + "highlight": { + "order": "score", + "fields": { + "comment": { + "fragment_size": 150, + "number_of_fragments": 3, + "highlight_query": { + "bool": { + "must": { + "match": { + "comment": { + "query": "foo bar" + } + } + }, + "should": { + "match_phrase": { + "comment": { + "query": "foo bar", + "slop": 1, + "boost": 10.0 + } + } + }, + "minimum_should_match": 0 + } + } + } + } + } +} -- cgit v1.2.3