I have a command
./bin/arq --data ./bin/dbpedia_2015-10.nt --query ./bin/166.rq
which works perfect and I can see my result in my command line interface. I would like to use jena RIOT to have my result in the file.ttl . But as I am not familiar with commandline and linux I don't know how to do it. is there any suggestion. I dont want to use the dbpedia datasets niether I just need the results from my sparql query.
this is my code `
select DISTINCT ?instance ?domain ?range ?subClassOf #
where {
?instance rdf:type ?type;
rdfs:domain ?domain;
rdfs:range ?range;
rdfs:subClassOf* ?subClassOf.
}
` ' but I have the error when change it to construct '
construct { DISTINCT ?instance ?domain ?range ?subClassOf.}
where {
?instance rdf:type ?type;
rdfs:domain ?domain;
rdfs:range ?range;
rdfs:subClassOf* ?subClassOf.
}
As you say your aim is to produce Turtle output and Turtle is an RDF serialisation format you need to CONSTRUCT RDF triples. e.g.