query-7e7430afe1f9ab76ae122cc6d3342b12

rq turtle/ttl

list of X_model and family excluding known problem areas

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
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        wdt:P279*  wd:Q10929058} # product model
      UNION {?item        wdt:P279*  wd:Q811701}   # model series
      MINUS {?item        wdt:P279*  wd:Q28885102} # pharmaceutical product
      MINUS {wd:Q372881   ^wdt:P279* ?item}        # spacecraft bus
      MINUS {wd:Q15061018 ^wdt:P279* ?item}        # proposed aircraft
    }
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c7(["wd:Q811701"]):::iri c10(["wd:Q15061018"]):::iri c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;"]):::literal c9(["wd:Q372881"]):::iri c8(["wd:Q28885102"]):::iri c6(["wd:Q10929058"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P279"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P279"--> c6 end union0r <== or ==> union0l end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P279"--> c8 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P279"--> c9 end subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P279"--> c10 end