%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/Joining/ |
Current File : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/Joining/HasParentQuery.php |
<?php /* * This file is part of the ONGR package. * * (c) NFQ Technologies UAB <info@nfq.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ONGR\ElasticsearchDSL\Query\Joining; use ONGR\ElasticsearchDSL\BuilderInterface; use ONGR\ElasticsearchDSL\ParametersTrait; /** * Represents Elasticsearch "has_parent" query. * * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-has-parent-query.html */ class HasParentQuery implements BuilderInterface { use ParametersTrait; /** * @var string */ private $parentType; /** * @var BuilderInterface */ private $query; /** * @param string $parentType * @param BuilderInterface $query * @param array $parameters */ public function __construct($parentType, BuilderInterface $query, array $parameters = []) { $this->parentType = $parentType; $this->query = $query; $this->setParameters($parameters); } /** * {@inheritdoc} */ public function getType() { return 'has_parent'; } /** * {@inheritdoc} */ public function toArray() { $query = [ 'parent_type' => $this->parentType, 'query' => $this->query->toArray(), ]; $output = $this->processArray($query); return [$this->getType() => $output]; } }