I don’t know how useful it is for your scenario, but it is possible to find stuff out about the items that are referring to an entity.
There is a (hidden) field called ‘References’ which is a collection of entities of the ‘Collaboration~Documents/Reference’ type. Each Reference entity contains all the useful info about the reference, including the ID of the referring entity.
Here’s an example of how you can access the ID of the first reference in the collection and thereby get the ID of the referring entity:
const entityWithExtraFields = await fibery.getEntityById(entity.type, entity.id, ['References']);
const firstRefID = entityWithExtraFields['References'][0]['Id']
const refWithDetails = await fibery.getEntityById('Collaboration~Documents/Reference', firstRefID, ['FromEntityId'])
You can probably figure out some of the rest yourself, but to give you a steer in the right direction, here’s a idea of the fields that the ‘Collaboration~Documents/Reference’ type contains:
I could imagine for your use case, you would want to find the most recently created reference, then find the FromEntityID…
Feel free to let us know how you get on