Is it possible to use a subquery to obtain a list of that object's __Share's?
For example: ObjA has been manually shared via apex. At some point I may want to query information about ObjA and get a list of its shares. I'd like to be able to do something like this:
SELECT ID, Name, (SELECT ID, UserOrGroupdID FROM ObjA__Shares) FROM ObjA__c WHERE ID = :someId;
From my testing in the dev console, it doesn't not appear to be the case. For the record I've tried ObjA__Share and ObjA__Shares to no avail.
Thanks