How to build nested query with Doctrine Query Builder?
My mysql query looks like this:
SELECT subquery1.*
FROM
(SELECT * FROM product
WHERE for_her = true && age_teenagers = true && special = true) subquery1
WHERE subquery1.song_rock =true || subquery1.describe_beauty = true;
How to convert this into Doctrine query in Product Entity Repository?