query-4afd9ea131beb63ec08b8e8ea873d297
title:Allievi della Scuola Normale Superiore con eventuale SBN SELECT ?persona ?personaLabel ?personaDescription ?sbn WHERE { ?persona p:P69 ?st . ?st ps:P69 ?classe . ?classe wdt:P361 wd:Q672416 . OPTIONAL { ?persona wdt:P396 ?sbn } . SERVICE wikibase:label { bd:serviceParam wikibase:language "it". } } ORDER BY ?personaLabel
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Allievi della Scuola Normale Superiore con eventuale SBN
SELECT ?persona ?personaLabel ?personaDescription ?sbn
WHERE {
?persona p:P69 ?st . ?st ps:P69 ?classe . ?classe wdt:P361 wd:Q672416 .
OPTIONAL { ?persona wdt:P396 ?sbn } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
ORDER BY ?personaLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?classe")
v2("?persona"):::projected
v1("?personaLabel"):::projected
v5("?sbn"):::projected
v3("?st")
c7(["bd:serviceParam"]):::iri
c4(["wd:Q672416"]):::iri
c9(["it"]):::literal
v2 --"p:P69"--> v3
v3 --"p:statement/P69"--> v4
v4 --"p:direct/P361"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P396".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end