query-b4f664bdf1c68eb749cb0d8ac67e1662
P559, P609
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 bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P31/wdt:P279* wd:Q34442 .
?item wdt:P559 ?ext .
?item wdt: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((" "))
c3(["wd:Q34442"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["fr,#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P559"--> v2
v1 --"wdt:P609"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end