blazegraph / database

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

sparql update via load <file:///file> does not load to nullgraph #191

Open Fex97 opened 3 years ago

Fex97 commented 3 years ago

Hey blazegraph! When i do a sparql update load with a file It creates a new graph with the name of the filepath. Blazegraph supports the full SPARQL 1.1 Update in all releases after 1.1.

my query: load file:///C:/Users/downloads/triples.ttl

my triple: p | g | g rdf:type | foaf:Person | <file:/C:/downloads/triples.ttl>

sparql 1.1 LOAD ( SILENT )? IRIref_from ( INTO GRAPH IRIref_to )? If no destination graph IRI (IRIref_to) is provided to load the triples into, then the data will be loaded into the default graph.

Best Regards /Felix