2891aa10ee9d474780adf94d5607f2db.asciidoc 335 B

123456789101112131415161718
  1. // search/request/sort.asciidoc:153
  2. [source, php]
  3. ----
  4. $params = [
  5. 'index' => 'index_long,index_double',
  6. 'body' => [
  7. 'sort' => [
  8. [
  9. 'field' => [
  10. 'numeric_type' => 'double',
  11. ],
  12. ],
  13. ],
  14. ],
  15. ];
  16. $response = $client->search($params);
  17. ----