Skip to content

Instantly share code, notes, and snippets.

@jaw111
Last active October 17, 2015 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaw111/f5f7b4bf91b814012985 to your computer and use it in GitHub Desktop.
Save jaw111/f5f7b4bf91b814012985 to your computer and use it in GitHub Desktop.
Hackalod 2015
# lookup books and labels
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbr: <http://dbpedia.org/resource/>
PREFIX schema: <http://schema.org/>
SELECT distinct ?s ?label WHERE {
{ ?s a schema:Book }
union
{ ?s a schema:EBook }
union
{ ?s a schema:CreativeWork }
?s rdfs:label ?label .
}
# lookup concepts
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbr: <http://dbpedia.org/resource/>
PREFIX schema: <http://schema.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT distinct ?s ?label WHERE {
?s a skos:Concept ;
rdfs:label ?label .
}
# find all concepts related to the interests of a person
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?o2 (count(distinct ?o) as ?c1) WHERE {
service <http://dydra.com/eknutov/hackalod/sparql> {
?s a foaf:Person ;
foaf:interest ?o
}
?o dct:subject|dct:creator ?z .
?z skos:broader* ?o2 .
}
group by ?o2
# lookup libraries and labels
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dbr: <http://dbpedia.org/resource/>
SELECT distinct ?s ?label WHERE {
?s a dbr:Library ;
rdfs:label ?label
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment