1234567891011121314151617181920 |
- // query-dsl/multi-match-query.asciidoc:259
- [source, php]
- ----
- $params = [
- 'body' => [
- 'query' => [
- 'multi_match' => [
- 'query' => 'quick brown f',
- 'type' => 'phrase_prefix',
- 'fields' => [
- 'subject',
- 'message',
- ],
- ],
- ],
- ],
- ];
- $response = $client->search($params);
- ----
|