query-d3baa52b71c3acf126f5215b67108376
Propertiescites work (P2860)author (P50)sex or gender (P21)
Use at
- https://query.wikidata.org/sparql
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 ?author (COUNT(?publication) AS ?count) WHERE {
?item wdt:P2860 ?publication .
?publication wdt:P50 ?author .
?author wdt:P21 wd:Q6581072 .
}
GROUP BY ?author
} SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?author"):::projected
v5("?count"):::projected
v2("?item")
v3("?publication")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c4(["wd:Q6581072"]):::iri
v2 --"wdt:P2860"--> v3
v3 --"wdt:P50"--> v4
v4 --"wdt:P21"--> c4
bind1[/"count(?publication)"/]
v3 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end