There could be multiple objects conveyed on an information flow. So won't the SQL have to substring the description field? E.g.:
SELECT s.object_type, s.name, d.object_type, d.name, o.object_type, o.name, c.connector_type, c.name
FROM t_object o,
t_xref x,
t_connector c,
t_object s,
t_object d
where o.name= '<Search Term>'
and (o.ea_guid = left(x.description,38)
or o.ea_guid = mid(x.description,40,38)
or o.ea_guid = mid(x.description,79,38)
or o.ea_guid = mid(x.description,118,38)
or o.ea_guid = mid(x.description,157,38)
or o.ea_guid = mid(x.description,196,38)
)
and c.ea_guid = x.client
and c.start_object_id = s.object_id
and c.end_object_id = d.object_id