I'm trying to use the following SPARQL syntax with GraphDB. I've never used it anywhere else before, so I don't have a good sense of whether it's official.
See also Using the 'GRAPH' keyword in SPARQL to fetch remote graphs
LOAD <http://raw.githubusercontent.com/evidenceontology/evidenceontology/master/eco.owl> INTO GRAPH <http://example.com/loaded>
When I try to load an RDF/XML
file with an .owl
extension, I generally get an error message like
Internal Server Error (#500)
White spaces are required between publicId and systemId. [line 1, column 63]
When I try to load a turtle file with a .ttl
extension, I generally get something more like
Internal Server Error (#500)
IRI included an unencoded space: '32' [line 1]
What am I doing wrong?