On 25/09/12 00:33, Frank Lee wrote:
Hi, Andy,What will be better way to duplicate existing named graph remotely? Or duplicated many with different URIs. Is there any simple API to use for it? Thanks. Cheers Frank
SPARQL Update:
something like
COPY <g1> To <g2>
for a one to one copy:
or
INSERT { GRAPH <g> { ?s ?p ?o } }
WHERE { GRAPH ?g { ?s ?p ?o } FILTER ( ?g IN ( <g1>, <g2>, <g3> ) ) }
for many
(untested)
Andy
