Home
last modified time | relevance | path

Searched refs:fields (Results 301 – 325 of 470) sorted by path

1...<<111213141516171819

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D6a1702dd50690cae833572e48a0ddf25.asciidoc10 'fields' => [
H A D6f21a878fee3b43c5332b81aaddbeac7.asciidoc9 'fields' => [
H A D7b908b1189f076942de8cd497ff1fa59.asciidoc11 'fields' => [
H A D99a52be903945b17e734a1d02a57e958.asciidoc7 'fields' => 'employee-id',
H A Da2a25aad1fea9a541b52ac613c78fb64.asciidoc9 'fields' => [
H A Dad0dcbc7fc619e952c8825b8f307b7b2.asciidoc11 'fields' => [
H A Dbe1bd47393646ac6bbee177d1cdb7738.asciidoc9 'fields' => [
H A De270f3f721a5712cd11a5ca03554f5b0.asciidoc11 'fields' => [
H A De30ea6e3823a139d7693d8cce1920a06.asciidoc10 'fields' => [
H A Df2d68493abd3ca430bd03a7f7f8d18f9.asciidoc9 'fields' => [
H A Dfdd38f0d248385a444c777e7acd97846.asciidoc9 'fields' => [
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc28 "fields" : {
50 'fields' => array(
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/
H A DFielddata.php30 protected $fields; variable in Elasticsearch\\Endpoints\\Cat\\Fielddata
34 $fields = $this->fields ?? null;
36 if (isset($fields)) {
37 return "/_cat/fielddata/$fields";
51 'fields'
60 public function setFields($fields): Fielddata argument
62 if (isset($fields) !== true) {
65 if (is_array($fields) === true) {
66 $fields
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DGetFieldMapping.php31 protected $fields; variable in Elasticsearch\\Endpoints\\Indices\\GetFieldMapping
35 if (isset($this->fields) !== true) {
37 'fields is required for get_field_mapping'
40 $fields = $this->fields;
48 return "/$index/_mapping/$type/field/$fields";
51 return "/$index/_mapping/field/$fields";
54 return "/_mapping/$type/field/$fields";
56 return "/_mapping/field/$fields";
76 public function setFields($fields) argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DCatNamespace.php113 * $params['fields'] = (list) A comma-separated list of fields to return the fielddata size
127 $fields = $this->extractArgument($params, 'fields');
132 $endpoint->setFields($fields);
H A DIndicesNamespace.php86 * $params['fields'] = (list) A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
518 * $params['fields'] = (list) A comma-separated list of fields to include in the stats if only a subset of fields should be returned (supports wildcards)
718 * Returns mapping for one or more fields.
720 * $params['fields'] = (list) A comma-separated list of fields (Required)
736 $fields = $this->extractArgument($params, 'fields');
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md359 * \Elastica\AbstractUpdateAction::getOptions( $fields ) no longer supports the $underscore parameter, option names must match what elasticsearch expects.
363 * The parameter [fields](https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking-changes-7.0.html#_the_parameter_literal_fields_literal_deprecated_in_6_x_has_been_removed_from_bulk_request) deprecated in 6.x has been removed from Bulk requestedit and Update request.
522 - In QueryString is not allowed to use fields parameters in conjunction with default_field parameter. This is not well documented, it's possibile to understand from [Elasticsearch tests : QueryStringQueryBuilderTests.java](https://github.com/elastic/elasticsearch/blob/6.0/core/src/test/java/org/elasticsearch/index/query/QueryStringQueryBuilderTests.java#L917) [#1352](https://github.com/ruflin/Elastica/pull/1352)
524 - The [created and found](https://github.com/elastic/elasticsearch/pull/25516) fields in index and delete responses became obsolete after the introduction of the result field in index, update and delete responses [#1354](https://github.com/ruflin/Elastica/pull/1354)
586 - Add support for querystring in Type. this allow to use `update_all_types` in type mapping in order to resolve conflicts between fields in different types. [Conflicts between fields in different types](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html#merging-conflicts)
626 - Deprecated both `prefix_len` & `min_word_len` fields in `Elastica\Suggest\CandidateGenerator\DirectGenerator` as these now return errors when using the phrase suggester to querying terms.
673 - Updated Elastica\Test\TypeTest::testGetDocumentWithFieldsSelection The stored_fields parameter will only return stored fields — it will no longer extract values from the _source
1594 - Add support for fields parameter in Elastica_Type::getDocument()
1721 - Populate updated fields i
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php254 * @param array|string $fields
258 public function setFields($fields) argument
260 if (\is_array($fields)) {
261 $fields = \implode(',', $fields);
264 return $this->setParam('fields', (string) $fields);
282 return $this->getParam('fields');
290 return $this->hasParam('fields');
473 * @param array $fields i
477 getOptions(array $fields = []) global() argument
[all...]
H A DQuery.php26 * @todo: improve TDocValueFields https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-docvalue-fields
262 * Sets the fields to be returned by the search
264 * so the fields array must a sequence(list) type of array.
266 * @param array $fields Fields to be returned
267 * @phpstan-param TStoredFields $fields
269 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-stored-fields argument
271 public function setStoredFields(array $fields): self
273 return $this->setParam('stored_fields', $fields);
277 * Set the doc value representation of a fields to return for each hit.
282 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-docvalue-fields
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DTopHits.php91 * Set script fields.
137 public function setFieldDataFields(array $fields): self argument
139 return $this->setParam('docvalue_fields', $fields);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DInnerHits.php107 * Set script fields.
147 public function setFieldDataFields(array $fields): self argument
149 return $this->setParam('docvalue_fields', $fields);
H A DMoreLikeThis.php17 * Set fields to which to restrict the mlt query.
19 * @param array $fields Field names
23 public function setFields(array $fields): self argument
25 return $this->setParam('fields', $fields);
H A DMultiMatch.php45 * @param array $fields Fields
49 public function setFields(array $fields = []): self argument
51 return $this->setParam('fields', $fields);
67 * Sets tie breaker to multiplier value to balance the scores between lower and higher scoring fields.
H A DQueryString.php45 * You cannot set fields and default_field.
170 * Sets the fields. If no fields are set, _all is chosen.
171 * You cannot set fields and default_field.
173 * @param array $fields Fields
177 public function setFields(array $fields): self argument
179 return $this->setParam('fields', $fields);
H A DSimpleQueryString.php15 public function __construct(string $query, array $fields = []) argument
18 if (0 < \count($fields)) {
19 $this->setFields($fields);
36 * @param string[] $fields the fields on which to perform this query. Defaults to index.query.default_field.
40 public function setFields(array $fields): self argument
42 return $this->setParam('fields', $fields);

1...<<111213141516171819