I have imported the following triples into RDFox v3:
@prefix : <https://oxfordsemantic.tech/> .
:charlie_chaplin a :ComicActor;
:name "Charlie Chaplin";
:born_in :uk .
:douglas_adams a :ComicAuthor ;
:name "Douglas Adams";
:born_in :uk .
:ComicActor :subClassOf :Comic .
:ComicAuthor :subClassOf :Comic .
When doing the following SPARQL query from the console:
SELECT ?comic
WHERE {
?comic :born_in :uk
}
I am getting the following error: The prefix name in the local IRI ':born_in' has not been bound.