query-6281809911259e8c83253d231a7abefe

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT ?item
WHERE
{
  ?item wikibase:sitelinks 1 .
  MINUS { ?item (wdt:P31|wdt:P279) [] } .
  [] schema:about ?item ; schema:isPartOf <https://de.wikipedia.org/> .
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) a2((" ")) c7([https://de.wikipedia.org/]):::iri c2(["1^^xsd:integer"]):::literal v1 --"wikibase:sitelinks"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P279"--> a1 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P31"--> a1 end union0r <== or ==> union0l end end a2 --"schema:about"--> v1 a2 --"schema:isPartOf"--> c7