query-6cf8e372a7455bb40af9205cbe51f488

rq turtle/ttl

Trans people in the arts

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#>
#defaultView:Graph
SELECT DISTINCT ?person ?personLabel ?personimage ?field ?fieldLabel WHERE {
  {?person wdt:P21 wd:Q2449503 } UNION {?person wdt:P21 wd:Q1052281 }      # trans men and women
  ?person wdt:P106/wdt:P279* wd:Q483501 .  # artist
  ?person wdt:P106 ?field. 
  ?field wdt:P279* wd:Q483501
MINUS {?field wdt:P279* wd:Q33999} # not actors
         OPTIONAL{ ?person wdt:P18 ?personimage }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?field"):::projected v1("?person"):::projected v3("?personimage"):::projected a1((" ")) c10(["bd:serviceParam"]):::iri c3(["wd:Q1052281"]):::iri c2(["wd:Q2449503"]):::iri c6(["wd:Q483501"]):::iri c7(["wd:Q33999"]):::iri c12(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P21"--> c3 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P21"--> c2 end union0r <== or ==> union0l end v1 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c6 v1 --"wdt:P106"--> v2 v2 --"wdt:P279"--> c6 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P279"--> c7 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end