query-206985ba6f63b90143f3ee3b5a648aa1
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?ps_value ?timeValue ?timeCalendarModel ?timeCalendarModelLabel WHERE
{
VALUEs ?item { wd:Q18810921 }
?item p:P569 ?stat.
?stat ps:P569 ?ps_value.
?stat psv:P569 ?stat2.
?stat2 wikibase:timeValue ?timeValue.
?stat2 wikibase:timeCalendarModel ?timeCalendarModel .
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("?item"):::projected
v3("?ps_value"):::projected
v2("?stat")
v4("?stat2")
v6("?timeCalendarModel"):::projected
v5("?timeValue"):::projected
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q18810921"])
bind00 --> bind0
v1 --"p:P569"--> v2
v2 --"p:statement/P569"--> v3
v2 --"p:statement/value/P569"--> v4
v4 --"wikibase:timeValue"--> v5
v4 --"wikibase:timeCalendarModel"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end