I'd like to know how to implement a Layout between two entities so that it's possible to see in only one screen an entity that has a list of a second entity, and at the same time, this second entity has two lists of other entities.
Entidad: Autorizacion
@Property()
List<Ejecutante> ejecutantes;
--------
Entidad: Ejecuntate
@Property()
Empresa empresa;
@Property()
List<Trabajador> trabajadores;
@Property()
List<Vehiculo> vehiculos;