I want to build queries in my Extbase repository that can filter out objects with a certain number of items
. items
is of type ObjectStorage
in the model.
I tried to get objects with at least 1 item in this query, but it obviously doesn't work because the method "greater than" won't count the items in the objectStorage.
$x = 0; //any number
$query = $this->createQuery();
$constraints[] = $query->equals('deleted', 0);
$constraints[] = $query->equals('hidden', 0);
$constraints[] = $query->greaterThan('items', $x);
return $query->matching($query->logicalAnd($constraints))->execute();
So how can I do this?
I was thinking about an SQL Statement, but how could I add it to constraints?
I don't want to do everything with SQL.
You can create yourself a custom constraint that does this. Have a look at how it is done in the
\TYPO3\CMS\Extbase\Persistence\Generic\Qom\QueryObjectModelFactory
.