query-e0e63d44a02b92c70fad807638bc94fc
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:Timeline
#Timeline of station opening
SELECT ?item ?itemLabel ?inception WHERE {
?item wdt:P16 wd:Q271195.
?item wdt:P31 wd:Q928830.
?item wdt:P571 ?inception.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?inception"):::projected
v1("?item"):::projected
c4(["wd:Q928830"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c2(["wd:Q271195"]):::iri
v1 --"wdt:P16"--> c2
v1 --"wdt:P31"--> c4
v1 --"wdt:P571"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end