With the entity API, how to construct a “q/where” clause that selects entities with an empty collection field?
I.e., something like:
'q/where': ['q/empty', [Collection_Field]],
With the graphQL API we can do this with:
collectionField: {isEmpty: true}