query-a3e208b47d00151499113729af44264c

rq turtle/ttl

TODO

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 
{
  ?item wdt:P31 wd:Q13442814.
  ?item wdt:P921 wd:Q164778.
  MINUS {
    VALUES ?prot { wd:Q83133549 wd:Q24745872 wd:Q24770641 }
    ?item wdt:P921 ?prot. }
  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; v1("?item"):::projected v2("?prot") c2(["wd:Q13442814"]):::iri c6(["bd:serviceParam"]):::iri c4(["wd:Q164778"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P921"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; bind1[/VALUES ?prot/] bind1-->v2 bind10(["wd:Q83133549"]) bind10 --> bind1 bind11(["wd:Q24745872"]) bind11 --> bind1 bind12(["wd:Q24770641"]) bind12 --> bind1 v1 --"wdt:P921"--> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end