query-7b5b826188a6353612bb831b55c1612f
Items with >10 sitelinks that have no image, but Wikipedia does SELECT ?q WHERE { ?q wdt:P31 wd:Q5 MINUS { ?q wdt:P18 [] }.?q wikibase:sitelinks ?linkcount FILTER ( ?linkcount > 10 )}
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/>
#Items with >10 sitelinks that have no image, but Wikipedia does
SELECT ?q WHERE { ?q wdt:P31 wd:Q5 MINUS { ?q wdt:P18 [] }.?q wikibase:sitelinks ?linkcount FILTER ( ?linkcount > 10 )}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?linkcount")
v2("?q"):::projected
a1((" "))
c3(["wd:Q5"]):::iri
f0[["?linkcount > '10^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P18"--> a1
end
v2 --"wikibase:sitelinks"--> v1