1

I have a question about how graphDB work with multiples graphs in the same repository: If 2 different graphs has the same triples, the graphDB keep the 2 triples (duplicated) or clean?

Stanislav Kralin
  • 11,070
  • 4
  • 35
  • 58

1 Answers1

2

It will keep both of them, depend on the query it will display what you need. Lets do the following example, first we will add the statements in first graph:

first graph

Then add the same triple in new graph in same repo:

second graph

If you then query both of them, both will display the statements

filtered result on first graph

filtered result on second graph

Tihomir
  • 21
  • 2