Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $q = $request->input('q');
  2. $response = $client->search([
  3. 'index' => 'users',
  4. 'type' => 'user',
  5. 'body' => [
  6. 'query' => [
  7. 'bool' => [
  8. 'should' => [
  9. ['match' => [ 'text' => $q ] ],
  10. ],
  11. ],
  12. ],
  13. ],
  14. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement