Is it possible to create an object in the triple SPARQL, which is created by combining a variable and a literal?
My business:
OPTIONAL { $object dc:identifier $identifier . <info:fedora/abc:123/MODS> fedora-view:disseminationType $mods . <info:fedora/abc:123/TN> fedora-view:disseminationType $tn }
An object
$ looks like this: <info:fedora/abc:123>
$ identifier looks like this: abc:123
and I need it: <info:fedora/abc:123/MODS>
I cannot use <info:fedora/$identifier/MODS>
, but is there any other way to "glue" variables and literals together?
source share