OpenIDM performs the following queries on a link object set.
-
Find link(s) for a given firstId object identifier.
SELECT * FROM links WHERE linkType =valueAND firstId =valueAlthough a single result makes sense, this query is intended to allow multiple results so that this scenario can be handled as an exception.
-
Select link(s) for a given second object identifier.
SELECT * FROM links WHERE linkType =valueAND secondId =valueAlthough a single result makes sense, this query is intended to allow multiple results so that this scenario can be handled as an exception.

