query-4f786edf46dbb696191a0282f1561a38
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?person ?personLabel ?data_morte
WHERE
{
?person wdt:P31 wd:Q5.
?person wdt:P21 wd:Q6581072.
?person (wdt:P19|wdt:P20|wdt:P551)/wdt:P131* wd:Q490.
?person wdt:P570 ?data_morte
MINUS
{
?article schema:isPartOf <https://it.wikipedia.org/>.
?article schema:about ?person.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?data_morte
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article")
v1("?data_morte"):::projected
v2("?person"):::projected
a1((" "))
c4(["wd:Q6581072"]):::iri
c12([https://it.wikipedia.org/]):::iri
c15(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c17(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c9(["wd:Q490"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P21"--> c4
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
subgraph union1[" Union "]
subgraph union1l[" "]
style union1l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P551"--> a1
end
subgraph union1r[" "]
style union1r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P20"--> a1
end
union1r <== or ==> union1l
end
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P19"--> a1
end
union0r <== or ==> union0l
end
a1 --"wdt:P131"--> c9
v2 --"wdt:P570"--> v1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"schema:isPartOf"--> c12
v3 --"schema:about"--> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c15 --"wikibase:language"--> c17
end