query-e05b999ea97cd0f9d8c5c069224a18c2
MH sans coordonnées SELECT ?MH ?MHLabel ?communeLabel ?deptLabel ?idLabel WHERE { ?MH wdt:P380 ?id; wdt:P131 ?commune . ?commune wdt:P31 wd:Q484170 . #commune de France ?commune wdt:P131 wd:Q12559. #dept ?commune wdt:P131 ?dept. ?dept wdt:P31 wd:Q6465 .
?commune wdt:P625 ?coordLoc. OPTIONAL { ?MH wdt:P625 ?coordMH. } FILTER (!bound(?coordMH)) MINUS { ?MH wdt:P5816 wd:Q56556915 } # détruit SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } } ORDER BY ?communeLabel ?MHLabel
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#>
#MH sans coordonnées
SELECT ?MH ?MHLabel ?communeLabel ?deptLabel ?idLabel WHERE {
?MH wdt:P380 ?id; wdt:P131 ?commune .
?commune wdt:P31 wd:Q484170 . #commune de France
?commune wdt:P131 wd:Q12559. #dept
?commune wdt:P131 ?dept.
?dept wdt:P31 wd:Q6465 .
?commune wdt:P625 ?coordLoc.
OPTIONAL { ?MH wdt:P625 ?coordMH. }
FILTER (!bound(?coordMH))
MINUS { ?MH wdt:P5816 wd:Q56556915 } # détruit
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
} ORDER BY ?communeLabel ?MHLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?MH"):::projected
v2("?MHLabel"):::projected
v6("?commune")
v1("?communeLabel"):::projected
v8("?coordLoc")
v3("?coordMH")
v7("?dept")
v5("?id")
c13(["fr"]):::literal
c9(["wd:Q56556915"]):::iri
c11(["bd:serviceParam"]):::iri
c5(["wd:Q12559"]):::iri
c6(["wd:Q6465"]):::iri
c4(["wd:Q484170"]):::iri
f0[["not bound(?coordMH)"]]
f0 --> v3
v4 --"wdt:P380"--> v5
v4 --"wdt:P131"--> v6
v6 --"wdt:P31"--> c4
v6 --"wdt:P131"--> c5
v6 --"wdt:P131"--> v7
v7 --"wdt:P31"--> c6
v6 --"wdt:P625"--> v8
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P625".-> v3
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v4 --"wdt:P5816"--> c9
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end