query-ae59aeb0e7f5c62ff6e2470a3e99ec4b
Universités du Québec classées par le nombre de publications universitaires
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 ?uni ?uniLabel (COUNT(?publication) AS ?count)
WHERE
{
?publication wdt:P31 wd:Q13442814 . #nb de scholarly article
?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;
v3("?author")
v5("?count")
v2("?publication"):::projected
v4("?uni"):::projected
c2(["wd:Q13442814"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c6(["wd:Q176"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P50"--> v3
v3 --"wdt:P108"--> v4
v4 --"wdt:P131"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"count(?publication)"/]
v2 --o bind1
bind1 --as--o v5