Home
last modified time | relevance | path

Searched refs:query (Results 226 – 250 of 964) sorted by last modified time

12345678910>>...39

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A Dd0a8a938a2fa913b6fdbc871079a59dd.asciidoc1 // query-dsl/term-query.asciidoc:28
7 'query' => [
H A Dd4b4cefba4318caeba7480187faf2b13.asciidoc1 // query-dsl/term-query.asciidoc:113
H A Ddb6cba451ba562abe953d09ad80cc15c.asciidoc1 // query-dsl/query-string-query.asciidoc:323
7 'query' => [
9 'query' => 'city.\*:(this AND that OR thus)',
H A D047266b0d20fdb62ebc72d51952c8f6d.asciidoc1 // query-dsl/multi-match-query.asciidoc:341
7 'query' => [
9 'query' => 'Will Smith',
H A D09d617863a103c82fb4101e6165ea7fe.asciidoc1 // query-dsl/match-all-query.asciidoc:11
7 'query' => [
H A D162b5b693b713f0bfab1209d59443c46.asciidoc1 // query-dsl/bool-query.asciidoc:130
7 'query' => [
H A D1bc731a4df952228af6dfa6b48627332.asciidoc10 'query' => [
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAbstractTransport.php65 * @param array<string, mixed> $query
69 public function sanityzeQueryStringBool(array $query) argument
71 foreach ($query as $key => $value) {
73 $query[$key] = ($value) ? 'true' : 'false';
77 return $query;
H A DHttp.php70 $query = $request->getQuery();
72 if (!empty($query)) {
74 $this->sanityzeQueryStringBool($query)
H A DHttpAdapter.php141 $query = $request->getQuery();
143 if (!empty($query)) {
144 $baseUri .= '?'.\http_build_query($query);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dfutures.asciidoc231 'query' => [
H A Dsearch-operations.asciidoc7 The client gives you full access to every query and parameter exposed by the
12 ==== Match query
14 Here is a standard curl for a match query:
19 "query" : {
29 And here is the same query constructed in the client:
36 'query' => [
59 'query' => [
70 {"query":{"match":{"testField":"abc"}}}
84 "query" : {
111 'query'
[all...]
H A Dcommunity.asciidoc10 Introducing {es} DSL library to provide objective query builder for {es} bundle
11 and elasticsearch-php client. You can easily build any {es} query and transform
31 https://github.com/gskema/elasticsearch-query-dsl-php[Link: ElasticSearchQueryDSL]
35 Feature complete, object oriented, composable, extendable {es} query DSL builder
63 - Provides nestable and DSL query builder to be executed by type repository
H A Dconnecting.asciidoc319 the `match` query as a demonstration:
326 'query' => [
H A Dconnection-pool.asciidoc12 If a connection pool is unable to find an alive node to query against, it
16 node succeeds and the query executes. The first nine nodes are marked dead
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md355 - Add verify as acceptable query string parameter for createRepository (#665) [[885bfea]](http://github.com/elasticsearch/elasticsearch-php/commit/885bfea)
H A DREADME.md265 Searching is a hallmark of Elasticsearch, so let's perform a search. We are going to use the Match query as a demonstration:
271 'query' => [
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc165 $params['q'] = (string) Query in the Lucene query string syntax
166 $params['analyzer'] = (string) The analyzer to use for the query string
168 $params['default_operator'] = (enum) The default operator for query string query (AND or OR) (Options = AND,OR) (Default = OR)
169 $params['df'] = (string) The field to use as default where no field prefix is given in the query string
170 $params['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
171 $params['terminate_after'] = (number) The maximum count for each shard, upon reaching which the query execution will terminate early
172 $params['body'] = (array) A query to restrict the results specified with the Query DSL (optional)
233 $params['analyzer'] = (string) The analyzer to use for the query string
235 $params['default_operator'] = (enum) The default operator for query strin
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DEqlNamespace.asciidoc79 $params['body'] = (array) Eql request body. Use the `query` to limit the query scope. (Required)
H A DSecurityNamespace.asciidoc242 $params['owner'] = (boolean) flag to query API keys owned by the currently authenticated user (Default = false)
H A DAsyncSearchNamespace.asciidoc82 $params['analyzer'] = (string) The analyzer to use for the query string
84 $params['default_operator'] = (enum) The default operator for query string query (AND or OR) (Options = AND,OR) (Default = OR)
85 $params['df'] = (string) The field to use as default where no field prefix is given in the query string
94 $params['lenient'] = (boolean) Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
96 $params['q'] = (string) Query in the Lucene query string syntax
104 $params['terminate_after'] = (number) The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early.
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md106 * Added `Elastica\Query\TermsSet` query by @mamchyts [#2020](https://github.com/ruflin/Elastica/pull/2020)
107 * Added `terms_set` in query builder by @deguif [#2036](https://github.com/ruflin/Elastica/pull/2036)
136 * Fixed terms query params resolution by @deguif [#2032](https://github.com/ruflin/Elastica/pull/2032)
189 * Allowed the Terms query to accept an array of bool, float, int and/or string [#1872](https://github.com/ruflin/Elastica/pull/1872)
238 * Deprecated Match query class and introduced MatchQuery instead for PHP 8.0 compatibility reason [#1799](https://github.com/ruflin/Elastica/pull/1799)
263 * The `Wildcard::setValue()` changed its signature: use it to set the value of the wildcard query only.
273 * Added `Elastica\Reindex->setQuery(Elastica\Query\AbstractQuery $query): void` [#1752](https://github.com/ruflin/Elastica/pull/1752)
348 * Removed `\Elastica\Query\GeohashCell` query, use `\Elastica\Query\GeoBoundingBox` instead [#1672](https://github.com/ruflin/Elastica/pull/1672).
352 * Removed Type query `\Elastica\Query\Type` [#1666](https://github.com/ruflin/Elastica/pull/1666)
357 * Removed Type query `Elastic
[all...]
H A DREADME.md5 [![Build Status](https://github.com/ruflin/elastica/workflows/Continuous%20integration/badge.svg?branch=master)](https://github.com/ruflin/Elastica/actions?query=workflow%3A%22Continuous%20integration%22%20branch%3Amaster)
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md216 function_name[:](configuration[,configuration])[?query]
222 { scheme:[//]authority[path][?query] | scheme:[//][userinfo]path[?query] | host:port[path][?query] }
237 query:
238 "Normal" URL query according to RFC3986 section 3.4.
/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php173 * Parse query params into an array.
177 $query = [];
178 if (isset($parts['query'])) {
179 parse_str($parts['query'], $query);
182 return $query;

12345678910>>...39