SPARQL (pronounced "sparkle", a recursive acronym for SPARQL Protocol and RDF Query Language) is a set of specifications by W3C that provide languages and protocols to query and manipulate RDF graph content on the Web or in an RDF store.
In this simple sparql query I get a list of subjects whose object is 42 SELECT ?v WHERE { ?v ?p 42 } If …
sparqlSo I have an RDF schema that contains many "groups", and each of these groups has a "name", and contains …
rdf sparql semantic-web jena owlI cannot understand how can I query DBpedia using Jena. In the tutorials like here(Listing 4) model is initialized as …
sparql semantic-web jena dbpediaIn the following SPARQL query, I'm not sure how to use if to bind one of two strings to the …
if-statement rdf sparqlThe following SPARQL query doesn't get the results I want because they are in other languages than English, regardless of …
sparql dbpediaIs there a library, which is able to build SPARQL queries programmatically like the CriteriaBuilder in JPA or to build …
java string sparql