query-fff15a5524bfd5e78328189ff4c5fbb3
tombe della Certosa con elementi su wikidata senza foto, nonostante esista la categoria collegata su Commons (elementi che hanno una categoria connessa in Commons ma nessuna P18) SELECT DISTINCT ?item ?itemlabel ?itemDescription ?imagelink WHERE { ?item wdt:P17 wd:Q38 . ?item wdt:P276 wd:Q3671680 . ?item wdt:P373 ?commons . MINUS { ?item wdt:P18 ?image } . BIND(IRI(CONCAT('https://commons.wikimedia.org/wiki/', ?image)) AS ?imagelink ) . } LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#tombe della Certosa con elementi su wikidata senza foto, nonostante esista la categoria collegata su Commons (elementi che hanno una categoria connessa in Commons ma nessuna P18)
SELECT DISTINCT ?item ?itemlabel ?itemDescription ?imagelink WHERE {
?item wdt:P17 wd:Q38 .
?item wdt:P276 wd:Q3671680 .
?item wdt:P373 ?commons .
MINUS { ?item wdt:P18 ?image } .
BIND(IRI(CONCAT('https://commons.wikimedia.org/wiki/', ?image)) AS ?imagelink ) .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?commons")
v3("?image")
v4("?imagelink"):::projected
v1("?item"):::projected
c2(["wd:Q38"]):::iri
c4(["wd:Q3671680"]):::iri
v1 --"wdt:P17"--> c2
v1 --"wdt:P276"--> c4
v1 --"wdt:P373"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P18"--> v3
end
bind1[/"concat('https://commons.wikimedia.org/wiki/',?image)"/]
v3 --o bind1
bind1 --as--o v4