Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to know how to execute a SPARQL query in SWI-Prolog, after I've loaded an ontology from a OWL/RDF file.

I've found that it's possible to execute a query through sparql_query/3, but it require a server.

share|improve this question

1 Answer

You could dig into the code of ClioPatria, which is a Semantic Web server written in Prolog. I'm sure there is code for loading an RDF/XML file and querying the graph using SPARQL without actually running the server.

Running an easy-to-use SPARQL server like Fuseki and do data adding and querying via SPARQL(U) or command line is probably easier though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.