query-373b789d60d6b60669e129d5127641e7
Extraction de la liste de communes de France), mais elle tombe à chaque fois en timeout... Auriez-vous une autre solution svp ? Ash CrowBonjour, j'essaye d'extraire la liste des communes de France à l'aide de la requête ci-dessous (initialement écrite par
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 ?commune ?communeLabel ?insee {
?commune p:P31 ?statement .
?statement ps:P31 wd:Q484170 .
FILTER NOT EXISTS { ?statement pq:P582 ?x } .
?commune wdt:P374 ?insee .
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;
v3("?commune"):::projected
v4("?insee"):::projected
v1("?statement")
v2("?x")
c7(["bd:serviceParam"]):::iri
c9(["fr"]):::literal
c4(["wd:Q484170"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"p:qualifier/P582"--> e0v2
e0v1("?statement"):::projected
e0v2("?x"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"p:qualifier/P582"--> v2
v3 --"p:P31"--> v1
v1 --"p:statement/P31"--> c4
v3 --"p:direct/P374"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end