query-0fcc2021b03a0d622810121093ca774a

rq turtle/ttl

People connected to Coventry, ordered by their number of sitelinksNote: "sitelinks" = articles about the subject in Wikipedia and other Wikimedia sites.

Use at

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#>
SELECT DISTINCT ?person ?personLabel ?personDescription (COUNT(?sitelink) as ?count) WHERE {
?person ?prop wd:Q6225; wdt:P31 wd:Q5.
?sitelink schema:about ?person
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?person ?personLabel ?personDescription
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v2("?person"):::projected v3("?prop") v4("?sitelink"):::projected c6(["bd:serviceParam"]):::iri c3(["wd:Q5"]):::iri c1(["wd:Q6225"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 -->v3--> c1 v2 --"wdt:P31"--> c3 v4 --"schema:about"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?sitelink)"/] v4 --o bind1 bind1 --as--o v5