|
The MongoDB parser backend currently supports to either select an entity type or a projection of properties, but not both in one query at the same time. So e.g. the following query would fail:
select h, h.id from Hypothesis h where h.id = 16
(See SimpleQueriesTest#testSelectingCompleteEntityInProjectionQuery().
|