query-91ac580e26b57da1e95f7d9262f4ccd5

rq turtle/ttl

Femmes employées UdeM les plus citées

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#>
##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
    ?author wdt:P108 wd:Q392189. #UdeM
    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 c8(["bd:serviceParam"]):::iri c6(["wd:Q392189"]):::iri c10(["en"]):::literal c4(["wd:Q6581072"]):::iri v2 --"wdt:P2860"--> v3 v3 --"wdt:P50"--> v4 v4 --"wdt:P21"--> c4 v4 --"wdt:P108"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind1[/"count(?publication)"/] v3 --o bind1 bind1 --as--o v5