tommorris (owner)

Revisions

gist: 117085 Download_button fork
public
Public Clone URL: git://gist.github.com/117085.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
SELECT ?p ?o ?label ?type
WHERE {
{ ?o ?p <http://dbpedia.org/resource/Philosophy> . } UNION { <http://dbpedia.org/resource/Philosophy> ?p ?o . }
OPTIONAL { ?o <http://www.w3.org/2000/01/rdf-schema#label> ?label . }
OPTIONAL { ?o <http://www.w3.org/2000/01/rdf-schema#type> ?type . }
 
FILTER (lang(?label) = "en")
}