Customer has 0 or more OilSeparator, and OilSeparator has 0 or more Inspection. How do I fetch a customer with it's OilSeparators that in turn has it's Inspections?
I want to do this:
this.customerRepository.findOne({
where: { id },
relations: ['oilSeparators, oilSeparators.inspections'],
});
but it's not supported as far as I can see. Do you know how to do this with createQueryBuilder ?