query-c247f8e124ecdab62089e0c073286fdc
Monuments historiques (N.Vigneron 24/04/20) https://w.wiki/NwVPréparation WLM 2020 : éléments Wikidata sans image alors qu'il existe une catégorie Commons :
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 ?mh ?mhLabel (URI(CONCAT("https://commons.wikimedia.org/wiki/Category:", ?com)) AS ?url) ?communeLabel ?deptLabel ?daLabel ?coord
WHERE {
?mh wdt:P380 ?id ; wdt:P373 ?com ; wdt:P625 ?coord; wdt:P131 ?commune .
OPTIONAL{?mh wdt:P6216 ?da}
?commune wdt:P131 ?dept .
?dept wdt:P31 wd:Q6465 . #département français
MINUS { ?mh wdt:P18 [] } # avec image
MINUS { ?mh wdt:P6216 wd:Q50423863 } # sous copyright
MINUS { ?mh wdt:P5816 wd:Q56556915 } # détruit
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
} ORDER by ?deptLabel ?communeLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?com"):::projected
v7("?commune")
v2("?communeLabel"):::projected
v6("?coord"):::projected
v8("?da")
v9("?dept")
v1("?deptLabel"):::projected
v4("?id")
v3("?mh"):::projected
v10("?url")
a1((" "))
c15(["fr"]):::literal
c11(["wd:Q56556915"]):::iri
c13(["bd:serviceParam"]):::iri
c7(["wd:Q6465"]):::iri
c9(["wd:Q50423863"]):::iri
v3 --"wdt:P380"--> v4
v3 --"wdt:P373"--> v5
v3 --"wdt:P625"--> v6
v3 --"wdt:P131"--> v7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P6216".-> v8
end
v7 --"wdt:P131"--> v9
v9 --"wdt:P31"--> c7
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P18"--> a1
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P6216"--> c9
end
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P5816"--> c11
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c13 --"wikibase:language"--> c15
end
bind3[/"concat('https://commons.wikimedia.org/wiki/Category:',?com)"/]
v5 --o bind3
bind3 --as--o v10