Hi,
I have a self-defined entity with revisions called command. The instance with id=1 has 3 revisions. Now I want to load all these revisions. Tried this:
$query = new EntityFieldQuery();
$query ->entityCondition('entity_type', 'command') ->propertyCondition('id', 1) ->age(FIELD_LOAD_REVISION);
$result = $query->execute();
but it gives me still only one revision, the current one. There's no difference to calling it without ->age(FIELD_LOAD_REVISION).
What am I doing wrong?