query-dd5c0dceb2e525db2fff00d0eb3c75b6
Best rank TODO
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 psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?elemento ?elementoLabel ?elementoDescription ?anno_nascita ?anno_morte ?luogo ?luogoLabel ?nw ?ni #?coord
WHERE {
?elemento wdt:P19 ?luogo .
?luogo wdt:P131* wd:Q16245 .
OPTIONAL { ?luogo wdt:P625 ?coord . }
?elemento wikibase:sitelinks ?nw . FILTER(?nw > 9)
?elemento wikibase:identifiers ?ni . FILTER(?ni > 9)
OPTIONAL { ?elemento p:P569 [ a wikibase:BestRank; psv:P569 [ wikibase:timeValue ?nascita ] ] . BIND(YEAR(?nascita) AS ?anno_nascita) }
OPTIONAL { ?elemento p:P570 [ a wikibase:BestRank; psv:P570 [ wikibase:timeValue ?morte ] ] . BIND(YEAR(?morte) AS ?anno_morte) }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
ORDER BY DESC(?ni)
Query found at
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/Queries
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/Queries/Showcase
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/sandbox
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v9("?anno_morte"):::projected
v7("?anno_nascita"):::projected
v5("?coord")
v3("?elemento"):::projected
v4("?luogo"):::projected
v8("?morte")
v6("?nascita")
v1("?ni"):::projected
v2("?nw"):::projected
a1((" "))
a2((" "))
a3((" "))
a4((" "))
c9(["wikibase:BestRank"]):::iri
c16(["bd:serviceParam"]):::iri
c18(["it,en"]):::literal
c4(["wd:Q16245"]):::iri
f0[["?ni > '9^^xsd:integer'"]]
f0 --> v1
f1[["?nw > '9^^xsd:integer'"]]
f1 --> v2
v3 --"p:direct/P19"--> v4
v4 --"p:direct/P131"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."p:direct/P625".-> v5
end
v3 --"wikibase:sitelinks"--> v2
v3 --"wikibase:identifiers"--> v1
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
a1 -."a".-> c9
a2 --"wikibase:timeValue"--> v6
a1 --"p:statement/value/P569"--> a2
v3 --"p:P569"--> a1
bind2[/"year-from-dateTime(?nascita)"/]
v6 --o bind2
bind2 --as--o v7
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
a3 -."a".-> c9
a4 --"wikibase:timeValue"--> v8
a3 --"p:statement/value/P570"--> a4
v3 --"p:P570"--> a3
bind3[/"year-from-dateTime(?morte)"/]
v8 --o bind3
bind3 --as--o v9
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c16 --"wikibase:language"--> c18
end