sparql
DEFINE get:soft "replace"
DEFINE input:default-graph-uri <source_graph_uri>
DEFINE output:default-graph-uri <target_graph_uri>
INSERT INTO <target_graph_uri>
{
GRAPH <source_graph_uri>
{
?s ?p ?o
}
}
sparql
DEFINE input:default-graph-uri <source_graph_uri>
DEFINE output:default-graph-uri <target_graph_uri>
DELETE
{
GRAPH <target_graph_uri>
{
?s ?p ?o
}
}
INSERT
{
GRAPH <target_graph_uri>
{
?s ?p ?o
}
}
WHERE
{
GRAPH <source_graph_uri>
{
?s ?p ?o
}
}