query-0d015576fb265180f17883a396451b37
Personaggi enciclopedici sepolti alla Certosa di Bologna SELECT ?persona ?CertosaBo ?personaLabel ?personaDescription ?luogosepoltura WHERE { {?persona wdt:P31 wd:Q5 .} ?persona wdt:P119 wd:Q3671680 . ?luogosepoltura wdt:P119 ?CertosaBo . SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". } } LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Personaggi enciclopedici sepolti alla Certosa di Bologna
SELECT ?persona ?CertosaBo ?personaLabel ?personaDescription ?luogosepoltura
WHERE {
{?persona wdt:P31 wd:Q5 .}
?persona wdt:P119 wd:Q3671680 .
?luogosepoltura wdt:P119 ?CertosaBo .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?CertosaBo"):::projected
v2("?luogosepoltura"):::projected
v1("?persona"):::projected
c4(["wd:Q3671680"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["it,en"]):::literal
c2(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P119"--> c4
v2 --"wdt:P119"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end