query-1b35aab0b34b5aefe4aa231324ce0055

rq turtle/ttl

distros without label SELECT ?distro

WHERE { ?distro wdt:P31 wd:Q131669 . MINUS {?distro rdfs:label ?distlabel . } } LIMIT 1000

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# distros without label
SELECT ?distro

WHERE {
  ?distro wdt:P31 wd:Q131669 .
  MINUS {?distro rdfs:label ?distlabel . }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?distlabel") v1("?distro"):::projected c2(["wd:Q131669"]):::iri v1 --"wdt:P31"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"rdfs:label"--> v2 end