OpenSearch/rest-api-spec/test/get/20_fields.yaml

46 lines
839 B
YAML
Raw Normal View History

2013-06-27 05:34:24 -04:00
---
"Fields":
2013-06-27 05:34:24 -04:00
- do:
index:
index: test_1
type: test
id: 1
body: { "foo": "bar", "count": 1 }
- do:
get:
index: test_1
type: test
id: 1
fields: foo
- match: { _index: test_1 }
- match: { _type: test }
- match: { _id: '1' }
2014-01-03 19:21:43 -05:00
- match: { fields.foo: [bar] }
- is_false: _source
2013-06-27 05:34:24 -04:00
- do:
get:
index: test_1
type: test
id: 1
fields: [foo, count]
2014-01-03 19:21:43 -05:00
- match: { fields.foo: [bar] }
- match: { fields.count: [1] }
- is_false: _source
2013-06-27 05:34:24 -04:00
- do:
get:
index: test_1
type: test
id: 1
fields: [foo, count, _source]
2014-01-03 19:21:43 -05:00
- match: { fields.foo: [bar] }
- match: { fields.count: [1] }
2013-06-27 05:34:24 -04:00
- match: { _source.foo: bar }