query-af086d9c139a5a0b6667ab8ea6fdce36

rq turtle/ttl

title: Pages en lien avec UdeM-HEC-Poly selon le nombre d'articles sur les projets Wikimédia (requête conçue par Nicolas Vigneron) SELECT ?item ?itemLabel ?itemDescription (COUNT(DISTINCT ?page) AS ?nb_pages) WHERE { VALUES ?univ { wd:Q392189 wd:Q273527 wd:Q273619 } ?item ?lien ?univ . ?page schema:about ?item . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?item ?itemLabel ?itemDescription HAVING ( ?nb_pages > 1 ) ORDER BY DESC(?nb_pages)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: Pages en lien avec UdeM-HEC-Poly selon le nombre d'articles sur les projets Wikimédia (requête conçue par Nicolas Vigneron) 
SELECT ?item ?itemLabel ?itemDescription (COUNT(DISTINCT ?page) AS ?nb_pages) WHERE {
  VALUES ?univ {  wd:Q392189 wd:Q273527 wd:Q273619 }
  ?item ?lien ?univ .
  ?page schema:about ?item .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel ?itemDescription
HAVING ( ?nb_pages > 1 )
ORDER BY DESC(?nb_pages)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v4("?lien") v6("?nb_pages") v5("?page"):::projected v2("?univ") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?nb_pages > '1^^xsd:integer'"]] f0 --> v6 bind1[/VALUES ?univ/] bind1-->v2 bind10(["wd:Q392189"]) bind10 --> bind1 bind11(["wd:Q273527"]) bind11 --> bind1 bind12(["wd:Q273619"]) bind12 --> bind1 v3 -->v4--> v2 v5 --"schema:about"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind3[/"count(?page)"/] v5 --o bind3 bind3 --as--o v6