Consider the following SPARQL update:
INSERT {
?performance
mo:performer ?performer ; # optional
mo:singer ?singer ; # optional
mo:performance_of [
dc:title ?title ; # mandatory
mo:composed_in [ a mo:Composition ;
mo:composer ?composer # optional
]
]
}
WHERE {}
If I do not provide values (e.g. in Jena's ParameterizedSparqlString.setIri()
for ?performer
, ?singer
, or ?composer
, this update won't insert statements with the corresponding objects, which is as intended.
But how can I suppress [] a mo:Composition
as well if ?composer
is missing. Creating it in a second INSERT whose WHERE filters on ISIRI(?composer)
doesn't seem to be an option because that INSERT won't know the blank node that has already been created by the first one.
So how can I support this kind of optional parameters in a single SPARQL update? E.g., is there any means for "storing" the blank node between two INSERTs?