query-40ce7f9538b005136f820a0a010fbc83

rq turtle/ttl

country (P17)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?b (COUNT(?archives) AS ?compte) WHERE {
  ?archives wdt:P31 wd:Q1970365 .
  ?archives wdt:P17 wd:Q39 .
  ?archives ?b ?c .
}
GROUP BY ?b
ORDER BY DESC(?compte)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?archives"):::projected v3("?b"):::projected v4("?c") v5("?compte") c4(["wd:Q39"]):::iri c2(["wd:Q1970365"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P17"--> c4 v2 -->v3--> v4 bind1[/"count(?archives)"/] v2 --o bind1 bind1 --as--o v5