query-8122078f941af364fdeee2cd5216e9a3
Timeline of Lithuanian writers who were born between 1800 and 1900
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#>
#title:Timeline of Lithuanian writers who were born between 1800 and 1900
#defaultView:Timeline
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?birth WHERE {
?item wdt:P106 wd:Q36180;
wdt:P27 wd:Q37;
wdt:P570 ?death;
wdt:P569 ?birth.
FILTER((?birth > "1800-01-01"^^xsd:dat) && (?birth < "1900-01-01"^^xsd:dat))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?birth"):::projected
v3("?death")
v2("?item"):::projected
c10(["bd:serviceParam"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q37"]):::iri
c4(["wd:Q36180"]):::iri
f0[["?birth > s1800-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'?birth < s1900-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]]
f0 --> v1
v2 --"wdt:P106"--> c4
v2 --"wdt:P27"--> c6
v2 --"wdt:P570"--> v3
v2 --"wdt:P569"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end