It is currently not supported due to nested relationships, now you can do nothing.
However, you can disable SoftDeletable behavior:
public function allAction() { $em = $this->getDoctrine()->getManager(); $em->getFilters()->disable('softdeletable');
Being warned, it will return ALL objects, even DELETED .
source share