query-da3dd0a85d4e8f72bddc59102dcdf206
. Après, si tu souhaites vraiment uniquement les anciennes communes, ce serait plutôt : (P374)INSEE municipality code sans (Q484170)commune of France Cela donne toute les
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 DISTINCT ?item ?itemLabel WHERE {
?item wdt:P31 wd:Q484170 .
?item p:P31 [ ps:P31 wd:Q484170 ; pq:P582 ?dateDebut ] . #avec une date de fin en qualificateur
MINUS { ?item wdt:P374 [] }.
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?dateDebut")
v1("?item"):::projected
a2((" "))
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["fr"]):::literal
c2(["wd:Q484170"]):::iri
v1 --"p:direct/P31"--> c2
a1 --"p:statement/P31"--> c2
a1 --"p:qualifier/P582"--> v2
v1 --"p:P31"--> a1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"p:direct/P374"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end