We are using Elixir and ext.versioned extension. Consider:
class Checkpoint(Entity):
owner = ManyToOne('User', lazy=False)
...
acts_as_versioned()
Now Users are JOINed to Checkpoints, but not to their old versions. How does one query all old versions of this entity with joining?