query-b34100142ce80fc42219753207f6906d
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 p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?start ?end ?endcause ?endcauseLabel
WHERE
{
wd:Q714581 p:P1344 ?st .
?st ps:P1344 ?item .
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;
v2("?item"):::projected
v1("?st")
c5(["bd:serviceParam"]):::iri
c1(["wd:Q714581"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c1 --"p:P1344"--> v1
v1 --"p:statement/P1344"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end