query-963c8e5438d8ef63ac19d4ceaefe7d4a

rq turtle/ttl

Female bioinformaticians/ computational biologists

SELECT DISTINCT ?item ?itemLabel ?_image WHERE { { ?item wdt:P106 wd:Q15709480.} # computational biologist UNION { ?item wdt:P106 wd:Q2904006.} # bioinformatician ?item wdt:P21 wd:Q6581072. # female SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }

OPTIONAL { ?item wdt:P18 ?_image. } } LIMIT 1000

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#>
#Female bioinformaticians/ computational biologists

SELECT DISTINCT ?item ?itemLabel ?_image WHERE {
  { ?item wdt:P106 wd:Q15709480.} # computational biologist
  UNION
  { ?item wdt:P106 wd:Q2904006.} # bioinformatician
  ?item wdt:P21 wd:Q6581072.      # female
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }

OPTIONAL { ?item wdt:P18 ?_image. }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?_image"):::projected v1("?item"):::projected c2(["wd:Q15709480"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c5(["wd:Q6581072"]):::iri c3(["wd:Q2904006"]):::iri subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P106"--> c3 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P106"--> c2 end union0r <== or ==> union0l end v1 --"wdt:P21"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v2 end