query-0dac16ef1154f1aafb682d01108661e9
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/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?sitelinks WHERE {
?item wdt:P31 wd:Q11173; wikibase:sitelinks ?sitelinks .
MINUS { ?item ^schema:about/schema:isPartOf <https://de.wikipedia.org/> }
} ORDER BY DESC(?sitelinks) LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelinks"):::projected
a1((" "))
c6([https://de.wikipedia.org/]):::iri
c2(["wd:Q11173"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wikibase:sitelinks"--> v1
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> c6
end