query-f9d17ad92d1f820e2b5815eb1f15db4e
title: List of characters in Tintin SELECT ?character ?characterLabel (COUNT(*) AS ?count) WHERE { ?book wdt:P179 wd:Q744536; wdt:P674 ?character. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?character ?characterLabel 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#>
#title: List of characters in Tintin
SELECT ?character ?characterLabel (COUNT(*) AS ?count) WHERE {
?book wdt:P179 wd:Q744536;
wdt:P674 ?character.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?character ?characterLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?book")
v3("?character"):::projected
v4("?count")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q744536"]):::iri
v2 --"wdt:P179"--> c2
v2 --"wdt:P674"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(*)"/]
bind1 --as--o v4