query-fabd2e3f827ec6cbef96fe60d5692dda
les éléments dans Wikidata disposant d'une ID SAPA et étant une organisation par type SELECT ?type ?typeLabel (COUNT(?type) AS ?count) WHERE { ?item wdt:P8974 []; wdt:P31 ?type. ?type wdt:P31/wdt:P279* wd:Q43229. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?type ?typeLabel ?count ORDER BY DESC (?count)
Use at
- https://query.wikidata.org/sparql
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#>
#les éléments dans Wikidata disposant d'une ID SAPA et étant une organisation par type
SELECT ?type ?typeLabel (COUNT(?type) AS ?count)
WHERE
{
?item wdt:P8974 [];
wdt:P31 ?type.
?type wdt:P31/wdt:P279* wd:Q43229.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?type ?typeLabel ?count
ORDER BY DESC (?count)