I am attempting to report on all linked records for records in a specific table. However, I've realized that one of the link groups I'm trying to get information about is actually owned by a different database, and is not showing up in the Record.links
property? Is there any way to find this link in the STK without searching through the other database for any records that link to my specific record?
There is a get_associated_records
function from the record object, but that requires a tabular attribute, which is not the use case I'm looking for.
It doesn't make a lot of sense to me that a Record
would be unaware of link groups it was a part of, or that there would be no way to query that information without taking an entirely different approach.
Also, slightly related, I would expect the Table.bulk_link_fetch
method to throw an error if I attempted to fetch a link group that "doesn't exist" (at least to the Record
in the current context), rather than getting the error later on when I try to access that link group directly.
Any suggestions or pointers would be greatly appreciated! Thank you!