query-13a79b27577101f7c614449b5f32c005
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?start_time ?end_time
WHERE
{ ?item p:P166 ?statement.
?statement ps:P166 wd:Q190042; pq:P580 ?start_time.
?statement ps:P166 wd:Q190042; pq:P582 ?end_time.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?end_time"):::projected
v1("?item"):::projected
v3("?start_time"):::projected
v2("?statement")
c7(["bd:serviceParam"]):::iri
c3(["wd:Q190042"]):::iri
c9(["de,en"]):::literal
v1 --"p:P166"--> v2
v2 --"p:statement/P166"--> c3
v2 --"p:qualifier/P580"--> v3
v2 --"p:statement/P166"--> c3
v2 --"p:qualifier/P582"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end