PREFIX mo:
PREFIX dc:
PREFIX mu:
PREFIC event:
SELECT ?instrument
WHERE
{
?signal mo:publishedAs .
?performance event:hasProduct ?sound.
?recording event:hasFactor ?sound;
event:hasProduct ?signal.
{
?performance event:hasFactor ?instrument.
?instrument a mu:Instrument.
}
UNION
{
?performance event:hasSubEvent ?subperformance.
?subperformance event:hasFactor ?instrument.
?instrument a mu:Instrument.
}
}