query = `SELECT ?country ?countryLabel (COUNT(*) AS ?count) WHERE {
?item (wdt:P31/(wdt:P279*)) wd:${category} ;
wdt:${pcountry} ?country.
MINUS { ?item wdt:P576 [] }
?country rdfs:label ?countryLabel.
FILTER(LANG(?countryLabel) = "${lang}")
}
GROUP BY ?country ?countryLabel
ORDER BY DESC (?count)
`