query-8937f139d4cee059a4a85236f0570fa2
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?file ?MId
WHERE {
{
SELECT ?item ?file WHERE {
SERVICE <https://query.wikidata.org/sparql> {
?item wdt:P18 ?file;
wdt:P106 wd:Q4610556.
}
}
} ?MId schema:url ?file .
MINUS { ?MId wdt:P180 ?item . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?MId"):::projected
v2("?file"):::projected
v1("?item"):::projected
c4(["wd:Q4610556"]):::iri
subgraph s1["https://query.wikidata.org/sparql"]
style s1 stroke-width:4px;
v1 --"wdt:P18"--> v2
v1 --"wdt:P106"--> c4
end
v3 --"schema:url"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P180"--> v1
end