Query Form - SPARQL Endpoint - Hoonoh.com

 

Sample Query

(selects all reviews by tom)

PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX hoonoh: <http://hoonoh.com/ontology#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?rel ?from ?mboxsum ?topic ?value
WHERE
{
 ?rel rdf:type ?type .
 ?rel hoonoh:from ?from .
 ?from foaf:mbox_sha1sum ?mboxsum .
 ?rel hoonoh:toTopic ?topic .
 ?topic rdf:type hoonoh:Topic .
 ?topic rdfs:label "milton-keynes" .
 ?rel hoonoh:value ?value .
}
ORDER BY ?value