16 lines
351 B
YAML
16 lines
351 B
YAML
---
|
|
"Expressions scripting test":
|
|
|
|
- do:
|
|
index:
|
|
index: test123
|
|
type: test
|
|
id: 1
|
|
body: { age: 23 }
|
|
|
|
- do:
|
|
indices.refresh: {}
|
|
|
|
- do: { search: { body: { script_fields : { my_field : { lang: expression, script: 'doc["age"].value' } } } } }
|
|
- match: { hits.hits.0.fields.my_field: [ 23.0 ] }
|