Outils personnels
User menu

Exemples SPARQL

De Dbpedia.fr.

À propos de villes

select * where {<http://fr.dbpedia.org/resource/Paris> ?r ?p}
prefix db-owl: <http://dbpedia.org/ontology/>
 select * where {
    ?ville db-owl:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> . 
    ?ville rdf:type db-owl:Settlement
 }
prefix db-owl: <http://dbpedia.org/ontology/>
 select * where {
   ?ville db-owl:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> . 
   ?ville rdf:type db-owl:Settlement .
   ?ville db-owl:populationTotal ?population .
   FILTER (?population > 100000)
 }

À propos de Musées

select * where {
   ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .
   ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie
 } LIMIT 1000
select * where {
   ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .
   ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie .
   ?oeuvre ?attribut ?valeur
 } LIMIT 10000