query-2b905b570be1adced5b9e48f853833e0

rq turtle/ttl

Infovarius

Use at

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.
  OPTIONAL { ?statement pq:P580 ?start_time. }
  OPTIONAL { ?statement 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 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:qualifier/P580".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:qualifier/P582".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end