query-7d69da828e6708bbc085c18bd62e59ab

rq turtle/ttl

afficher le nombre d'éléments disposant de la propriété "archivé par" (P485) par institution française

afficher le lieu où est située l'institution.

classer les institution par ordre de nombre d'éléments décroissant.

SELECT ?institution ?institutionLabel (GROUP_CONCAT(DISTINCT(?lieuLabel); separator=", ") as ?lieuxLabel) (COUNT(DISTINCT ?item) AS ?total) WHERE { ?item wdt:P485 ?institution . #les éléments doivent disposé de la propriété "archivé par" qui renvoie à une institution. ?institution wdt:P17 wd:Q142; #l'institution doit être localisée en France wdt:P131 ?lieu. #localisation administrative de l'institution SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". ?institution rdfs:label ?institutionLabel. ?lieu rdfs:label ?lieuLabel.} } GROUP BY ?institution ?institutionLabel ORDER BY DESC (?total)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#afficher le nombre d'éléments disposant de la propriété "archivé par" (P485) par institution française
#afficher le lieu où est située l'institution.
#classer les institution par ordre de nombre d'éléments décroissant.
SELECT ?institution ?institutionLabel (GROUP_CONCAT(DISTINCT(?lieuLabel); separator=", ") as ?lieuxLabel) (COUNT(DISTINCT ?item) AS ?total) 
WHERE 
{
  ?item wdt:P485 ?institution . #les éléments doivent disposé de la propriété "archivé par" qui renvoie à une institution.
  ?institution wdt:P17 wd:Q142; #l'institution doit être localisée en France
               wdt:P131 ?lieu. #localisation administrative de l'institution
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". 
                          ?institution rdfs:label ?institutionLabel.
                          ?lieu rdfs:label ?lieuLabel.}
}
GROUP BY ?institution ?institutionLabel
ORDER BY DESC (?total)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?institution"):::projected v5("?institutionLabel"):::projected v2("?item"):::projected v4("?lieu") v6("?lieuLabel"):::projected v7("?lieuxLabel") v8("?total") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal c3(["wd:Q142"]):::iri v2 --"wdt:P485"--> v3 v3 --"wdt:P17"--> c3 v3 --"wdt:P131"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 v3 --"rdfs:label"--> v5 v4 --"rdfs:label"--> v6 end bind2[/"?lieuLabel"/] v6 --o bind2 bind2 --as--o v7 bind3[/"count(?item)"/] v2 --o bind3 bind3 --as--o v8