query-e44db69ee80d1233873d0f5dc3c22502
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 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 ?capital ?capitalLabel ?url_official ?ofLabel WHERE {
?capital wdt:P31 wd:Q17221353 ;
p:P856 ?statement .
?statement ps:P856 ?url_official ;
pq:P642 ?of.
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("?capital"):::projected
v4("?of")
v2("?statement")
v3("?url_official"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q17221353"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"p:direct/P31"--> c2
v1 --"p:P856"--> v2
v2 --"p:statement/P856"--> v3
v2 --"p:qualifier/P642"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end