2013-08-28 19:24:34 -04:00
|
|
|
[[get]]
|
|
|
|
== Get API
|
|
|
|
|
|
|
|
The get API is very similar to the
|
2017-02-04 05:42:45 -05:00
|
|
|
// {javaclient}/java-docs-get.html[]
|
2015-10-22 18:00:35 -04:00
|
|
|
Java get API. The main benefit
|
2013-08-28 19:24:34 -04:00
|
|
|
of using groovy is handling the source content. It can be automatically
|
|
|
|
converted to a `Map` which means using Groovy to navigate it is simple:
|
|
|
|
|
2016-08-29 17:33:25 -04:00
|
|
|
[source,groovy]
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
def getF = node.client.get {
|
|
|
|
index "test"
|
2018-10-22 14:54:04 -04:00
|
|
|
type "_doc"
|
2013-08-28 19:24:34 -04:00
|
|
|
id "1"
|
|
|
|
}
|
|
|
|
|
|
|
|
println "Result of field2: $getF.response.source.complex.field2"
|
|
|
|
--------------------------------------------------
|