Filter included relations
I am currently using the following query to retrieve all undeleted
appBundles
from my database:
Each appBundle
can be assigned to an appChannel
. Currently, all undeleted appBundles
are returned, regardless of whether the associated appChannel
has been deleted or not. In the future, I only want to query appBundles
whose appChannel
is not deleted, if one is assigned.
Unfortunately, the following does not work:
What is the best way to implement this?0 Replies