$params = [
'index' => 'events',
'body' => [
'query' => [
'bool' => [
'filter' => [
'term' => [
'conditions' => $filter
]
]
]
]
]
];
$this->client->search($params)
{
"query": {
"terms": {
"user.id": [ "kimchy", "elkbee" ],
"boost": 1.0
}
}
}