| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace Elastica\Query;
- /**
- * Class SimpleQueryString.
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html
- */
- class SimpleQueryString extends AbstractQuery
- {
- const OPERATOR_AND = 'and';
- const OPERATOR_OR = 'or';
- /**
- * @param string $query
- * @param array $fields
- */
- public function __construct($query, array $fields = [])
- {
- $this->setQuery($query);
- if (count($fields)) {
- $this->setFields($fields);
- }
- }
- /**
- * Set the querystring for this query.
- *
- * @param string $query see ES documentation for querystring syntax
- *
- * @return $this
- */
- public function setQuery($query)
- {
- return $this->setParam('query', $query);
- }
- /**
- * @param string[] $fields the fields on which to perform this query. Defaults to index.query.default_field.
- *
- * @return $this
- */
- public function setFields(array $fields)
- {
- return $this->setParam('fields', $fields);
- }
- /**
- * Set the default operator to use if no explicit operator is defined in the query string.
- *
- * @param string $operator see OPERATOR_* constants for options
- *
- * @return $this
- */
- public function setDefaultOperator($operator)
- {
- return $this->setParam('default_operator', $operator);
- }
- /**
- * Set the analyzer used to analyze each term of the query.
- *
- * @param string $analyzer
- *
- * @return $this
- */
- public function setAnalyzer($analyzer)
- {
- return $this->setParam('analyzer', $analyzer);
- }
- /**
- * Set minimum_should_match option.
- *
- * @param int|string $minimumShouldMatch
- *
- * @return $this
- */
- public function setMinimumShouldMatch($minimumShouldMatch)
- {
- return $this->setParam('minimum_should_match', $minimumShouldMatch);
- }
- }
|