query-4a91252304193b58bf19139f2b2a6a8a
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
SELECT DISTINCT ?author ?authorLabel ?death ?article ?articleLabel ?publication {
?author wdt:P570 ?death .
FILTER (?death < "1948-01-01T00:00:00"^^xsd:dateTime && ?death >= "1947-01-01T00:00:00"^^xsd:dateTime)
?article wdt:P50 ?author .
?article wdt:P1433?/wdt:P577 ?publication .
?article wdt:P31/(wdt:P279*)/(wdt:P527?) wd:Q4119870
SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}
} ORDER BY ASC(?publication)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article"):::projected
v3("?author"):::projected
v2("?death"):::projected
v1("?publication"):::projected
a1((" "))
a2((" "))
a3((" "))
c9(["wd:Q4119870"]):::iri
c14(["en"]):::literal
c12(["bd:serviceParam"]):::iri
f0[["?death < '1948-01-01T00:00:00^^xsd:dateTime'?death >= '1947-01-01T00:00:00^^xsd:dateTime'"]]
f0 --> v2
v3 --"wdt:P570"--> v2
v4 --"wdt:P50"--> v3
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v4 --"wdt:P1433"--> a1
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
end
union0r <== or ==> union0l
end
a1 --"wdt:P577"--> v1
v4 --"wdt:P31"--> a2
a2 --"wdt:P279"--> a3
subgraph union1[" Union "]
subgraph union1l[" "]
style union1l fill:#abf,stroke-dasharray: 3 3;
a3 --"wdt:P527"--> c9
end
subgraph union1r[" "]
style union1r fill:#abf,stroke-dasharray: 3 3;
end
union1r <== or ==> union1l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c12 --"wikibase:language"--> c14
end