query-a2b1a5540f6db3b515656efe10d9298c

rq turtle/ttl

أكثر المؤلفات المستشهد بهن Most cited female authors Most cited female authors Nejcitovanější autorky Most cited female authors Meistzitiere Autorinnen Most cited female authors Most cited female authors Most cited female authors Most cited female authors Most cited female authors Les autrices les plus citées Most cited female authors Most cited female authors Most cited female authors Le autrici più citate Most cited female authors Most cited female authors Most cited female authors Most cited female authors Most cited female authors Meest geciteerde vrouwelijke auteurs Most cited female authors Most cited female authors Most cited female authors Самые цитируемые авторы-женщины Most cited female authors Most cited female authors Most cited female authors Most cited female authors Most cited female authors Most cited female authors 最多被引用的女性作家

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#>
#added 2016-12
##defaultView:BubbleChart
SELECT ?author ?authorLabel (COUNT(?publication) AS ?count)
WHERE
{
    ?item wdt:P2860 ?publication . #citations
    ?publication wdt:P50 ?author . #authors
    ?author wdt:P21 wd:Q6581072. #females
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?author ?authorLabel
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") v2("?item") v3("?publication"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c4(["wd:Q6581072"]):::iri v2 --"wdt:P2860"--> v3 v3 --"wdt:P50"--> v4 v4 --"wdt:P21"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?publication)"/] v3 --o bind1 bind1 --as--o v5