Old post but the query below could help someone (EA v8 with eap file)
I get the list of conveyed items by using de t_xref.description field. Note : I got an sql error by using LIKE operator into JOIN clause : "can't join on memo access". It is due to the TEXT type of description field. So I truncate the field with LEFT function. 800 chars go to 20 eap_id (20x40) but you can increase this limit.
Stéphane
SELECT t_Connector.ea_guid AS CLASSGUID, t_Connector.Connector_Type AS CLASSTYPE, t_Connector.Connector_ID,
t_Connector.Name, t_Connector.Top_Mid_Label,
startObject.Object_Type, startObject.Name,
endObject.Object_Type, endObject.Name,
x.Behavior, x.Description, conveyedObject.name
FROM (((t_Connector
INNER JOIN t_Object as startObject ON t_Connector.Start_Object_ID=startObject.Object_ID)
INNER JOIN t_Object as endObject ON t_Connector.End_Object_ID=endObject.Object_ID)
INNER JOIN t_xref as x ON t_connector.ea_guid=x.Client)
INNER JOIN t_object as conveyedObject ON (x.Behavior = 'conveyed' AND LEFT(x.description,800) LIKE '#WC#'+conveyedObject.ea_guid+'#WC#')
WHERE t_Connector.Connector_Type = 'InformationFlow'