Google\Cloud\Datastore\Query\Query::__construct PHP Method

__construct() public method

public __construct ( EntityMapper $entityMapper, array $query = [] )
$entityMapper Google\Cloud\Datastore\EntityMapper An instance of EntityMapper
$query array [optional] [Query](https://cloud.google.com/datastore/reference/rest/v1/projects/runQuery#query)
    public function __construct(EntityMapper $entityMapper, array $query = [])
    {
        $this->entityMapper = $entityMapper;
        $this->query = $query + ['projection' => [], 'kind' => [], 'order' => [], 'distinctOn' => []];
    }