query-a32f37bf841e6c518e8ed9b12860d807

rq turtle/ttl

Universités du Québec classées par le nombre de citations

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 ?uni ?uniLabel (COUNT(?publication) AS ?count)
WHERE
{
    ?item wdt:P2860 ?publication . #citations
    ?publication wdt:P50 ?author . #authors
    ?author wdt:P108 ?uni.
    ?uni wdt:P131* wd:Q176.
    #?uni wdt:P31 wd:Q3551519.
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?uni ?uniLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?author") v6("?count") v2("?item") v3("?publication"):::projected v5("?uni"):::projected c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c5(["wd:Q176"]):::iri v2 --"wdt:P2860"--> v3 v3 --"wdt:P50"--> v4 v4 --"wdt:P108"--> v5 v5 --"wdt:P131"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(?publication)"/] v3 --o bind1 bind1 --as--o v6