OpenSearch/rest-api-spec/test/get_source/10_basic.yaml

25 lines
364 B
YAML

---
"Basic":
- do:
index:
index: test_1
type: test
id: 1
body: { "foo": "bar" }
- do:
get_source:
index: test_1
type: test
id: 1
- match: { '': { foo: bar } }
- do:
get_source:
index: test_1
type: _all
id: 1
- match: { '': { foo: bar } }