I have the following situation in my RDF-store:
Named Graph: A
S1 P1 O1
Named Graph: B
S2 P2 O1
Named Graph: C
S3 P3 O1
I now want to define a SPARQL Query which finds all Graphs where O1 is in the tripples, and stores those 3 Graphs + the tripples in a new Graph with the name A+B+C
NEW Named Graph: A+B+C
Named Graph: A
S1 P1 O1
Named Graph: B
S2 P2 O1
Named Graph: C
S3 P3 O1
With Construct or insert Into i only found out how to build a graph out of tripples, bzw not how to build a graph which contains graphs?
Is this possible, if yes how?
Tank you