query-26abb08a9a38043adfd8e76538837a12
TODO
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/>
SELECT DISTINCT ?item ?identifiers WHERE {
?item wdt:P31/wdt:P279* wd:Q4830453; wikibase:sitelinks 0; wikibase:identifiers ?identifiers .
MINUS { [] ?backlink ?item }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?backlink")
v2("?identifiers"):::projected
v1("?item"):::projected
a2((" "))
a1((" "))
c5(["0^^xsd:integer"]):::literal
c3(["wd:Q4830453"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wikibase:sitelinks"--> c5
v1 --"wikibase:identifiers"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a2 -->v3--> v1
end