diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-24 13:42:30 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-24 13:42:30 -0700 |
commit | 95fca87e9f5fae3283ade00363bfd2d094dd0689 (patch) | |
tree | 3c1392544000d6b39da9d7637898f7ab5418c7b1 /tests/files/GET_highlight_fields.txt | |
parent | bb552c9d0060cf49e187d1b06460a838ef19828d (diff) | |
download | es-public-proxy-95fca87e9f5fae3283ade00363bfd2d094dd0689.tar.gz es-public-proxy-95fca87e9f5fae3283ade00363bfd2d094dd0689.zip |
more test queries
Diffstat (limited to 'tests/files/GET_highlight_fields.txt')
-rw-r--r-- | tests/files/GET_highlight_fields.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/files/GET_highlight_fields.txt b/tests/files/GET_highlight_fields.txt new file mode 100644 index 0000000..bbd474a --- /dev/null +++ b/tests/files/GET_highlight_fields.txt @@ -0,0 +1,18 @@ +GET /_search +{ + "query": { + "query_string": { + "query": "running scissors", + "fields": ["comment", "comment.plain^10"] + } + }, + "highlight": { + "order": "score", + "fields": { + "comment": { + "matched_fields": ["comment", "comment.plain"], + "type" : "fvh" + } + } + } +} |