1. $joins = $query->getQuery()->joins;
    2. $isJoined = false;
    3. if ($joins) {
    4. foreach ($joins as $join) {
    5. if ($join->table == 'x') {
    6. $isCarJoined = true;
    7. break;
    8. }
    9. }
    10. }
    11. if (!$isJoined) {
    12. $query->leftJoin('x', 'x.id', '=', 'y.x_id');
    13. }