getObjectCountByQuery() публичный Метод

Returns the number of items matching the query.
public getObjectCountByQuery ( Neos\Flow\Persistence\QueryInterface $query ) : integer
$query Neos\Flow\Persistence\QueryInterface
Результат integer
Пример #1
0
 /**
  * Returns the number of records matching the query.
  *
  * @param QueryInterface $query
  * @return integer
  * @api
  */
 public function getObjectCountByQuery(QueryInterface $query)
 {
     return $this->backend->getObjectCountByQuery($query);
 }