Retrieve related models with filters
Sometimes you need to retrieve related models with filters in Django ORM. Here is how you can do it.
In the above code snippet, we are filtering the books with the title containing “Harry Potter”. Then we are annotating the authors that have books with the title containing “Harry Potter”. Finally, we are prefetching the related books for the authors with the title containing “Harry Potter”.