query-7a3f0639782070c68cc757e55ffb05ea
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 ?item ?itemLabel ?extLabel ?locLabel WHERE {
?item wdt:P31/wdt:P279* wd:Q34442 .
?item p:P559 [ps:P559 ?ext; pq:P609 ?loc] .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,[AUTO_LANGUAGE]" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?ext")
v1("?item"):::projected
v3("?loc")
a1((" "))
a2((" "))
c3(["wd:Q34442"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["fr,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"p:direct/P31"--> a1
a1 --"p:direct/P279"--> c3
a2 --"p:statement/P559"--> v2
a2 --"p:qualifier/P609"--> v3
v1 --"p:P559"--> a2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end