Files
elasticsearch-js/docs/doc_examples/5d9d7b84e2fec7ecd832145cbb951cf1.asciidoc
Tomas Della Vedova 01e045f491 Update docs examples (#1024)
* Updated generate-docs-examples script

* Updated docs examples
2019-12-19 09:29:15 +01:00

36 lines
655 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.search({
body: {
size: 0,
aggs: {
expired_sessions: {
terms: {
field: 'account_id',
include: {
partition: 0,
num_partitions: 20
},
size: 10000,
order: {
last_access: 'asc'
}
},
aggs: {
last_access: {
max: {
field: 'access_date'
}
}
}
}
}
}
})
console.log(response)
----