In a Function On Object (FoO) I would like to check if any link exist, but without pulling the objects in memory.
Pseudo code I want to avoid:
const linkedObjects = someObject.linkType.all();
if (linkedObjects.length === 0) { ... }
Is it possible ?