query-85c8a308bf686b64b28c8c7df0ee2679

rq turtle/ttl

Propertiesauthor (P50)sex or gender (P21)cites work (P2860)

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 ?author ?authorLabel 
WHERE {
  {
 SELECT (COUNT(?citing_work) AS ?count) ?author WHERE {
 ?work wdt:P50 ?author .
 ?author wdt:P21 wd:Q6581072 .
 ?citing_work wdt:P2860 ?work
 }
 GROUP BY ?author 
 ORDER BY DESC(?count)
 # LIMIT 100
} 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; v3("?author"):::projected v4("?citing_work") v5("?count"):::projected v2("?work") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q6581072"]):::iri v2 --"wdt:P50"--> v3 v3 --"wdt:P21"--> c3 v4 --"wdt:P2860"--> v2 bind1[/"count(?citing_work)"/] v4 --o bind1 bind1 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end