$response = $client->search([
'index' => 'shop',
'type' => 'products',
'body' => [
'_source' => ['id'],
'query' => [
'bool' => [
'must' => [
'multi_match' => [
'query' => $text,
'fuzziness' => 'auto',
'operator' => 'and',
'fields' => ['name', 'description']
]
]
]
]
]
]);