Buy Access to Course
11.

Collection Criteria for Custom Relation Queries

Share this awesome video!

|

Keep on Learning!

With a Subscription, click any sentence in the script to jump to that part of the video!

Login Subscribe

When we render the answers for a question, we only want to render the approved answers. I got clever and did this by adding a getApprovedAnswers() method. It loops over all of the answers... but then returns only the approved ones.

186 lines | src/Entity/Question.php
// ... lines 1 - 14
class Question
{
// ... lines 17 - 156
public function getApprovedAnswers(): Collection
{
return $this->answers->filter(function(Answer $answer) {
return $answer->isApproved();
});
}
// ... lines 163 - 184
}

The problem with this approach is... performance. It's pretty silly to query for every Answer related to this question... and then only render some of them.

Realistically, if there are only ever a few non-approved answers, this is no big deal. But if it's possible that a question could have many non-approved answers, this page could really slow down. Imagine querying for 200 answers because some SPAM bot hit our site... only to render 6 of them.

Unfortunately, because we're in an entity, we can't simply grab the AnswerRepository service from inside of this method and create a custom query. So... are we stuck? Do we need to back up to our controller and do a custom query for the answers there?

Fortunately, no! These Doctrine Collection objects have a few tricks up their sleeves, including a special "criteria" system for just this situation. It allows us to describe how we want to filter the answers and then it uses that when it queries!

Creating the Criteria Expression

Remove the filter stuff entirely... and instead say $criteria = Criteria - the one from Doctrine\Collections - ::create().

188 lines | src/Entity/Question.php
// ... lines 1 - 7
use Doctrine\Common\Collections\Criteria;
// ... lines 9 - 15
class Question
{
// ... lines 18 - 157
public function getApprovedAnswers(): Collection
{
$criteria = Criteria::create()
// ... lines 161 - 163
}
// ... lines 165 - 186
}

This object "kind of" looks like a query builder. For example, it has an ->andWhere() method. The big difference is what we put inside of this. Instead of a simple string, we need to use a criteria "expression": Criteria::expr(), ->eq() - for equals - and pass this status: the property we want to use in the WHERE. For the second arg, use Answer::STATUS_APPROVED.

188 lines | src/Entity/Question.php
// ... lines 1 - 7
use Doctrine\Common\Collections\Criteria;
// ... lines 9 - 15
class Question
{
// ... lines 18 - 157
public function getApprovedAnswers(): Collection
{
$criteria = Criteria::create()
->andWhere(Criteria::expr()->eq('status', Answer::STATUS_APPROVED));
// ... lines 162 - 163
}
// ... lines 165 - 186
}

This Criteria object now "describes" how we want to filter the answers: "where status = approved". To use this say $this->answers->matching($criteria).

188 lines | src/Entity/Question.php
// ... lines 1 - 7
use Doctrine\Common\Collections\Criteria;
// ... lines 9 - 15
class Question
{
// ... lines 18 - 157
public function getApprovedAnswers(): Collection
{
$criteria = Criteria::create()
->andWhere(Criteria::expr()->eq('status', Answer::STATUS_APPROVED));
return $this->answers->matching($criteria);
}
// ... lines 165 - 186
}

For me, the criteria syntax - especially the expression stuff - is a little cryptic. But it's still usually pretty easy to create whatever logic I need. And, most importantly, it gets the job done.

Check it out: we have 6 approved answers now. After we refresh... good: this still renders 6 answers. Open the Doctrine profiler to look at the queries. And... amazing! When we call getApprovedAnswers(), it now queries from answer where question_id equals this question and status = 'approved! Even the COUNT() query above this is smart!

So... that's the criteria system! And other than getting a little bit fancier with the expressions you create... it's just that simple and powerful. It's one of my favorite secrets inside Doctrine.

Moving Criteria Logic into the Repository

By the way, if you don't like having the query logic in your entity, I don't blame you! But no worries: we can move it into our repository. Copy the criteria code and then open up src/Repository/AnswerRepository.php... since this criteria relates to answers. Delete the example code and replace it with a new public static function called createApprovedCriteria(). This will, of course, return a Criteria object. Paste the logic and return.

29 lines | src/Repository/AnswerRepository.php
// ... lines 1 - 6
use Doctrine\Common\Collections\Criteria;
// ... lines 8 - 15
class AnswerRepository extends ServiceEntityRepository
{
// ... lines 18 - 22
public static function createApprovedCriteria(): Criteria
{
return Criteria::create()
->andWhere(Criteria::expr()->eq('status', Answer::STATUS_APPROVED));
}
}

There are two reasons I'm making this static. First, because I want to be able to call this from my Question entity. And since I can't inject service objects into an entity, the only way to do that is by making this method static. And second... this method can be static! It doesn't need to use the $this variable to call any methods on the repository.

Anyways, now that we have this, back in Question we can simplify to return $this->answers->matching(), AnswerRepository::createApprovedCriteria().

186 lines | src/Entity/Question.php
// ... lines 1 - 4
use App\Repository\AnswerRepository;
// ... lines 6 - 16
class Question
{
// ... lines 19 - 158
public function getApprovedAnswers(): Collection
{
return $this->answers->matching(AnswerRepository::createApprovedCriteria());
}
// ... lines 163 - 184
}

Cool! If you go back to the site and try it now... still 6 questions: it still works.

Using Criteria in a QueryBuilder

One other cool thing about these Criteria objects is that you can reuse them with the query builder. For example, suppose we need to create a custom query that returns 10 approved answers. Add a new method for this: public function findAllApproved() with an int $max = 10 argument... and this will return and array. Though, more specifically, I'll advertise in PHPDoc that this will return an array of Answer objects.

41 lines | src/Repository/AnswerRepository.php
// ... lines 1 - 15
class AnswerRepository extends ServiceEntityRepository
{
// ... lines 18 - 28
/**
* @return Answer[]
*/
public function findAllApproved(int $max = 10): array
{
// ... lines 34 - 38
}
}

Inside, create the query builder like normal: return $this->createQueryBuilder() and pass it answer for the alias. To filter for only approved answers, we would normally say ->andWhere('answer.status = :status'). But... I want to do this without duplicating the approved logic that we already wrote in the criteria method. Fortunately, we can put a criteria into a QueryBuilder by saying ->addCriteria() and then self::createApprovedCriteria().

41 lines | src/Repository/AnswerRepository.php
// ... lines 1 - 15
class AnswerRepository extends ServiceEntityRepository
{
// ... lines 18 - 28
/**
* @return Answer[]
*/
public function findAllApproved(int $max = 10): array
{
return $this->createQueryBuilder('answer')
->addCriteria(self::createApprovedCriteria())
// ... lines 36 - 38
}
}

Cool huh? From here, we can finish the query like normal: ->setMaxResults($max) and then ->getQuery()->getResult().

41 lines | src/Repository/AnswerRepository.php
// ... lines 1 - 15
class AnswerRepository extends ServiceEntityRepository
{
// ... lines 18 - 28
/**
* @return Answer[]
*/
public function findAllApproved(int $max = 10): array
{
return $this->createQueryBuilder('answer')
->addCriteria(self::createApprovedCriteria())
->setMaxResults($max)
->getQuery()
->getResult();
}
}

I won't use this method right now, but hopefully you get the idea.

Next: let's add a new page to our site that shows the most popular answers. This will give us a great example to learn more about - then solve - the N+1 problem.