Allow to auto-join when accessing an attribute, based on declaration: ```javascript table Country { name: string } table Person { country: Country } Person {country.name} // results in a join on Country & Person ```