query-d2a1ba539f571f25cc1c808979244657
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?P180 WHERE
{
{ SELECT DISTINCT ?P180 WHERE
{
?file wdt:P180 ?P180 .
} limit 80000 } SERVICE <https://query.wikidata.org/sparql> {
OPTIONAL {?P180 wdt:P18 ?img . }
FILTER (!BOUND(?img))
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?P180"):::projected
v1("?file")
v3("?img")
v1 --"wdt:P180"--> v2
subgraph s1["https://query.wikidata.org/sparql"]
style s1 stroke-width:4px;
f0[["not bound(?img)"]]
f0 --> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v3
end
end