query-4ddab59a606120d67ded04b10890ca27

rq turtle/ttl

Vaccines and subclasses, excluding "immunologic adjuvant" SELECT ?item WHERE { ?item wdt:P31/wdt:P279* wd:Q134808 . MINUS {?item wdt:P31 wd:Q967453 .} }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Vaccines and subclasses, excluding "immunologic adjuvant"
SELECT ?item
WHERE
  { ?item wdt:P31/wdt:P279* wd:Q134808  .
   MINUS {?item wdt:P31 wd:Q967453  .}
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c4(["wd:Q967453"]):::iri c3(["wd:Q134808"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> c4 end