2a1de18774f9c68cafa169847832b2bc.asciidoc 345 B

123456789101112131415161718
  1. // query-dsl/term-query.asciidoc:94
  2. [source, php]
  3. ----
  4. $params = [
  5. 'index' => 'my_index',
  6. 'body' => [
  7. 'mappings' => [
  8. 'properties' => [
  9. 'full_text' => [
  10. 'type' => 'text',
  11. ],
  12. ],
  13. ],
  14. ],
  15. ];
  16. $response = $client->indices()->create($params);
  17. ----