query-dacec37a6773391dd9839cf4ce32b433
Estrarre da data.bnf.fr gli autori persona # N.B. L'endpoint restituisce al massimo 1 milione di risultati SELECT ?autore WHERE { ?autore http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://xmlns.com/foaf/0.1/Person . # pone la condizione di essere persona in data.bnf.fr ?opera http://purl.org/dc/terms/creator ?autore . # pone la condizione di essere autore di un'opera }
Use at
- https://query.wikidata.org/sparql
# Estrarre da data.bnf.fr gli autori persona # N.B. L'endpoint restituisce al massimo 1 milione di risultati
SELECT ?autore
WHERE {
?autore <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> . # pone la condizione di essere persona in data.bnf.fr
?opera <http://purl.org/dc/terms/creator> ?autore . # pone la condizione di essere autore di un'opera
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?autore"):::projected
v2("?opera")
c2([http://xmlns.com/foaf/0.1/Person]):::iri
v1 --"a"--> c2
v2 --http://purl.org/dc/terms/creator--> v1