Most voted "sparql" questions
SPARQL is a set of W3C specifications that offer languages and protocols for queries and handle RDF graphic content on the Web or in a RDF store. The acronym is a recursive acronym for SPARQL Protocol and RDF Query Language,
Learn more…2 questions
Sort by count of
-
3
votes2
answers194
viewsHow to get query result separated by columns?
I need to make a query in dbpedia and from this query return name, gender and other information of a particular singer. I am able to do this, but my code returns the whole tuple, I wish I could…
-
0
votes0
answers52
viewsOR logic operator in sparql
I’m trying to build a sparql query using Or, like: SELECT ?a ?b ?c WHERE (?a :property ?b **OR** ?b :property ?c **OR** ?a :property ?x OR .....) ... ms I cannot use, because it throws the following…