Une requête pour trouver les écrivains nés en Californie
PREFIX abo: <http://artemisBookstore.com/ontology#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX dbr: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX abr: <http://artemisBookstore.com/abr/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?writer ?name where {
?writer abo:birthState dbr:California;
foaf:name ?name.
} ORDER BY ?name
qui donne le résultat
Une requête pour trouver les écrivains nés dans le même état que Paul Auster
PREFIX abo: <http://artemisBookstore.com/ontology#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX dbr: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX abr: <http://artemisBookstore.com/abr/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?other ?name where {
?auster foaf:name "Paul Auster"@en;
abo:birthState ?birthState.
?other abo:birthState ?birthState;
foaf:name ?name.
FILTER (?other != ?auster)
} ORDER BY ?name
qui donne le résultat