123456789101112131415161718 |
- // query-dsl/term-query.asciidoc:94
- [source, php]
- ----
- $params = [
- 'index' => 'my_index',
- 'body' => [
- 'mappings' => [
- 'properties' => [
- 'full_text' => [
- 'type' => 'text',
- ],
- ],
- ],
- ],
- ];
- $response = $client->indices()->create($params);
- ----
|