query-817b64268c2115ff49becfeb1181d6f3

rq turtle/ttl

Articles without main subject (P921)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  {
    SELECT DISTINCT ?item WHERE {
      ?item p:P361 ?statement0.
      ?statement0 (ps:P361/(wdt:P279*)) wd:Q1138524.
      MINUS {
        ?item p:P921 ?statement1.
        ?statement1 (ps:P921/(wdt:P279*)) _:anyValueP921.
      }
    }
    LIMIT 1000
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?statement0") v3("?statement1") a3((" ")) a1((" ")) a2((" ")) c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;"]):::literal c8(["wd:Q1138524"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"p:P361"--> v2 v2 --"p:statement/P361"--> a1 a1 --"p:direct/P279"--> c8 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"p:P921"--> v3 v3 --"p:statement/P921"--> a2 a2 --"p:direct/P279"--> a3 end