query-01b9c9cffea591748737c83a2b1d4893
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#>
SELECT ?skip ?skipLabel ?service_entry WHERE {
?skip wdt:P31 wd:Q11446.
?skip wdt:P17 wd:Q20.
?skip wdt:P729 ?service_entry .
FILTER ((year(?service_entry) >= 1939) && ( year(?service_entry) <= 1946 ))
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("?service_entry"):::projected
v2("?skip"):::projected
c9(["bd:serviceParam"]):::iri
c6(["wd:Q20"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q11446"]):::iri
f0[["year-from-dateTime(?service_entry) >= '1939^^xsd:integer'year-from-dateTime(?service_entry) <= '1946^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c4
v2 --"wdt:P17"--> c6
v2 --"wdt:P729"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end