blazegraph / database

Blazegraph High Performance Graph Database
GNU General Public License v2.0
871 stars 170 forks source link

Way to assign graph or context while importing file? #179

Open DenisNovac opened 3 years ago

DenisNovac commented 3 years ago

Hi everyone. I can see that blazegraph uses graphs since query

prefix skos: <http://www.w3.org/2004/02/skos/core#>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT ?graph
WHERE {
  BIND (skos:prefLabel AS ?p)
  GRAPH ?graph {
    { ?s rdf:type skos:Concept . }
    OPTIONAL { ?s ?p ?o . }  
  }

returns bd:nullGraph. But is it configurable during file importing? In my previous rdf store there was a feature where you could assign the context/graph to every triple in file.