query-47cfbd4011448c07758bedbb0dec89d6

rq turtle/ttl

Propertiesaward received (P166)sex or gender (P21)

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 ?count ?gender ?genderLabel 
WHERE {
   {
  SELECT (COUNT(DISTINCT ?recipient) AS ?count) ?gender WHERE {
    ?recipient wdt:P166 wd:Q6596243 . 
    ?recipient wdt:P21 ?gender . 
  } 
  GROUP BY ?gender
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . } 
} 
 ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count"):::projected v3("?gender"):::projected v2("?recipient") c5(["bd:serviceParam"]):::iri c2(["wd:Q6596243"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P166"--> c2 v2 --"wdt:P21"--> v3 bind1[/"count(?recipient)"/] v2 --o bind1 bind1 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end