query-6940feccd15f6981aac2be678735411b
]reply[15:35, 5 February 2018 (UTC)) talk (Geraki-
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 ?person ?personLabel ?date
WHERE
{
?person wdt:P569 ?birth .
OPTIONAL {?person wdt:P570 ?death }
FILTER (!bound(?death))
?article schema:about ?person .
?article schema:isPartOf <https://el.wikipedia.org/>
FILTER ( YEAR(?birth) > 1920 )
?person wdt:P31 wd:Q5 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "el" }
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article")
v1("?birth")
v2("?death")
v3("?person"):::projected
c10(["bd:serviceParam"]):::iri
c12(["el"]):::literal
c8(["wd:Q5"]):::iri
c6([https://el.wikipedia.org/]):::iri
f0[["year-from-dateTime(?birth) > '1920^^xsd:integer'"]]
f0 --> v1
f1[["not bound(?death)"]]
f1 --> v2
v3 --"wdt:P569"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P570".-> v2
end
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c6
v3 --"wdt:P31"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end