query-611ce50864e5d5fead945ea2e6f43474

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 ?lieuLabel (COUNT(?item) - COALESCE(?subtrahend, 0) 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

OPTIONAL { VALUES (?institution ?subtrahend) { (wd:Q182542 593) (wd:Q2860505 113) } } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?institution ?institutionLabel ?lieuLabel ?subtrahend ORDER BY DESC (?total) ?lieuLabel

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#>
#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 ?lieuLabel (COUNT(?item) - COALESCE(?subtrahend, 0) 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

  OPTIONAL {
    VALUES (?institution ?subtrahend) {
      (wd:Q182542 593)
      (wd:Q2860505 113)
    }
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?institution ?institutionLabel ?lieuLabel ?subtrahend
ORDER BY DESC (?total) ?lieuLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?institution"):::projected v3("?item") v5("?lieu") v2("?lieuLabel"):::projected v6("?subtrahend"):::projected v7("?total") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q142"]):::iri v3 --"wdt:P485"--> v6 v6 --"wdt:P17"--> c3 v6 --"wdt:P131"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; bind0[/VALUES ?institution ?subtrahend/] bind0-->v6 bind0-->v6 bind00(["wd:Q182542"]) bind00 --> bind0 bind01(["593^^xsd:integer"]) bind01 --> bind0 bind02(["wd:Q2860505"]) bind02 --> bind0 bind03(["113^^xsd:integer"]) bind03 --> bind0 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 -."wikibase:language".-> c8 end bind2[/" - ?subtrahend'0^^xsd:integer'"/] null --o bind2 v6 --o bind2 bind2 --as--o v7