SUBQUERY
Specify child relationship name and pass list of fields.
public inherited sharing class AccountSelector {
    public static SOQL Query {
        get {
            return SOQL.of(Account.sObjectType)
                .with(new List<sObjectField>{
                    Account.Id,
                    Account.Name
                });
        }
    }
}
public with sharing class MyController {
    public static List<Account> getAccountsWithContacts() {
        /*
        SELECT Id, Name, (
            SELECT Id, Name FROM Contacts
        ) FROM Account
        */
        return AccountSelector.Query
            .with(SOQL.SubQuery.of('Contacts')
                .with(new List<sObjectField>{
                    Contact.Id,
                    Contact.Name
                })
            ).asList();
    }
}