| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace Elastica\Query;
- use Elastica\Query as BaseQuery;
- /**
- * Returns parent documents having child docs matching the query.
- *
- * @author Fabian Vogler <fabian@equivalence.ch>
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-has-child-query.html
- */
- class HasChild extends AbstractQuery
- {
- /**
- * Construct HasChild Query.
- *
- * @param string|\Elastica\Query|\Elastica\Query\AbstractQuery $query
- * @param string $type Parent document type
- */
- public function __construct($query, $type = null)
- {
- $this->setType($type);
- $this->setQuery($query);
- }
- /**
- * Sets query object.
- *
- * @param string|\Elastica\Query|\Elastica\Query\AbstractQuery $query
- *
- * @return $this
- */
- public function setQuery($query)
- {
- return $this->setParam('query', BaseQuery::create($query));
- }
- /**
- * Set type of the parent document.
- *
- * @param string $type Parent document type
- *
- * @return $this
- */
- public function setType($type)
- {
- return $this->setParam('type', $type);
- }
- /**
- * Sets the scope.
- *
- * @param string $scope Scope
- *
- * @return $this
- */
- public function setScope($scope)
- {
- return $this->setParam('_scope', $scope);
- }
- /**
- * Set inner hits.
- *
- * @param InnerHits $innerHits
- *
- * @return $this
- */
- public function setInnerHits(InnerHits $innerHits)
- {
- return $this->setParam('inner_hits', $innerHits);
- }
- /**
- * {@inheritdoc}
- */
- public function toArray()
- {
- $array = parent::toArray();
- $baseName = $this->_getBaseName();
- if (isset($array[$baseName]['query'])) {
- $array[$baseName]['query'] = $array[$baseName]['query']['query'];
- }
- return $array;
- }
- }
|