generate an urn/iri/uri dynamically
问题 I need to generate dynamically the name of a graph depending on the time. I've tough that some think like select ?g where { bind(concat("<urn:myNewGraph_",str(now()),">") as ?g) } would have done the trick, but with Stardog I get a null result. If instead I run this select ?g where { bind(concat("urn:myNewGraph_",str(now())) as ?g) } i get urn:myNewGraph_2015-05-28T09:37:11.823Z Any Ideas? moreover I'm not sure that even if i can get somehow a string like <urn:myNewGraph_2015-05-28T09:37:11