Skip to content

Instantly share code, notes, and snippets.

@kossgreim
Created December 20, 2016 07:17
Show Gist options
  • Save kossgreim/ff7dd581e0fa8825732d85ac2bac7211 to your computer and use it in GitHub Desktop.
Save kossgreim/ff7dd581e0fa8825732d85ac2bac7211 to your computer and use it in GitHub Desktop.
$params = [
'index' => 'registrations',
'type' => 'event_db',
'body' => [
'query' => [
'bool' => [
'filter'=>[
[
'query_string' => [
'query' => $str,
'fields'=> ['name', 'lastName', 'email', 'ticket_codes', 'ticket_hashes', 'accessCode']
],
],
[
'term' => [
'event_id' => 'ev_' . $event->id
]
]
]
],
],
]
];
return $this->_client->search($params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment