query-21f214da199e9a511b14bf28d1e836aa

rq turtle/ttl

Llywelyn2000

Use at

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/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription
WHERE
{

{
  SELECT ?item
  WHERE
  {
    ?item wdt:P31 wd:Q11424 .
    MINUS
    {
      ?article schema:about ?item .
      ?article schema:isPartOf / wikibase:wikiGroup "wikipedia" .
    }
  }
  LIMIT 100
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article") v1("?item"):::projected a1((" ")) c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wikipedia"]):::literal c2(["wd:Q11424"]):::iri v1 --"wdt:P31"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> a1 a1 --"wikibase:wikiGroup"--> c6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end