query-96d02cd7384ec573f7f701a97e22c7f4

rq turtle/ttl

11

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 ?actor ?actorLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?actor (wdt:P106/wdt:P279*) wd:Q33999.
  ?actor wdt:P27 wd:Q902.
 MINUS {?actor wdt:P345 []}
}
LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?actor"):::projected a2((" ")) a1((" ")) c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal c9(["wd:Q902"]):::iri c7(["wd:Q33999"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c7 v1 --"wdt:P27"--> c9 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P345"--> a2 end