query-aa1bc601ccfe58353d86d86853348008
les différents types d'éléments de Wikidata étant une production des arts de la scène par type SELECT ?type ?typeLabel (COUNT(?type) AS ?count) WHERE { ?item (wdt:P31/(wdt:P279*)) wd:Q43099500; wdt:P31 ?type. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?typeLabel ?type ?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 différents types d'éléments de Wikidata étant une production des arts de la scène par type
SELECT ?type ?typeLabel (COUNT(?type) AS ?count)
WHERE {
?item (wdt:P31/(wdt:P279*)) wd:Q43099500;
wdt:P31 ?type.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?typeLabel ?type ?count
ORDER BY DESC (?count)