mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
24 lines
399 B
YAML
24 lines
399 B
YAML
---
|
|
"Basic mlt":
|
|
- do:
|
|
index:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar, title: howdy }
|
|
|
|
- do:
|
|
indices.refresh: {}
|
|
|
|
- do:
|
|
explain:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body:
|
|
query:
|
|
match_all: {}
|
|
|
|
- is_true: matched
|
|
- match: { explanation.value: 1 }
|