query-48e56442f79d30c7815ff5b2e3d8d3d5
Categories per origen de llocs d'AustrĂ lia i nombre d'articles (1 nivell P131) SELECT DISTINCT ?lloc ?llocLabel ?cat ?categoria ?catnat ?categorianat (COUNT(DISTINCT(?persona)) AS ?totpers) WHERE { ?persona wdt:P19/wdt:P131? ?lloc. ?lloc wdt:P17 wd:Q408. ?art schema:about ?persona. ?art schema:isPartOf https://ca.wikipedia.org/. OPTIONAL { ?lloc wdt:P1464 ?catnat. OPTIONAL { ?categorianat schema:about ?catnat. ?categorianat schema:isPartOf https://ca.wikipedia.org/. } } OPTIONAL { ?lloc wdt:P1792 ?cat. OPTIONAL { ?categoria schema:about ?cat. ?categoria schema:isPartOf https://ca.wikipedia.org/. } } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . } } GROUP BY ?lloc ?cat ?llocLabel ?categoria ?catnat ?categorianat ORDER BY DESC(?totpers) ?llocLabel
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Categories per origen de llocs d'AustrĂ lia i nombre d'articles (1 nivell P131)
SELECT DISTINCT ?lloc ?llocLabel ?cat ?categoria ?catnat ?categorianat (COUNT(DISTINCT(?persona)) AS ?totpers)
WHERE {
?persona wdt:P19/wdt:P131? ?lloc.
?lloc wdt:P17 wd:Q408.
?art schema:about ?persona.
?art schema:isPartOf <https://ca.wikipedia.org/>.
OPTIONAL {
?lloc wdt:P1464 ?catnat.
OPTIONAL {
?categorianat schema:about ?catnat.
?categorianat schema:isPartOf <https://ca.wikipedia.org/>.
}
}
OPTIONAL {
?lloc wdt:P1792 ?cat.
OPTIONAL {
?categoria schema:about ?cat.
?categoria schema:isPartOf <https://ca.wikipedia.org/>.
}
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . }
}
GROUP BY ?lloc ?cat ?llocLabel ?categoria ?catnat ?categorianat
ORDER BY DESC(?totpers) ?llocLabel