You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I fetch all Subject with corresponding Events given a particular timerange?
It should be possible with a 'ReverseLookup' (#599), when we use a 'RIGHT JOIN' to the subquery, I think?
Alternatively an list aggregate Function could be helpful:
Events.select and group_by subject + list aggregate the rest (e.g. with json_agg in postgres)
Join Subject data inside that Events.select query
Is there currently a way to do this? Thank you!
The text was updated successfully, but these errors were encountered:
It should be possible with a 'ReverseLookup' (#599), when we use a 'RIGHT JOIN' to the subquery, I think?
Alternatively, would it be possible to use the ReverseLookup in the where clause? So that where and select can use two different Subqueries (ReverseLookups)
Let's say I have
How can I fetch all Subject with corresponding Events given a particular timerange?
It should be possible with a 'ReverseLookup' (#599), when we use a 'RIGHT JOIN' to the subquery, I think?
Alternatively an list aggregate Function could be helpful:
Is there currently a way to do this? Thank you!
The text was updated successfully, but these errors were encountered: