query-ceef01097bceb69384d75447ef4135e4

rq turtle/ttl

Things "located in Coventry" ordered by number of sitelinks There are likely to be items with a lat/long pair placing them in Coventry but which don't have the "located in Coventry" property. Note:

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 ?place ?placeLabel ?placeDescription (COUNT(?sitelink) as ?count) WHERE {
?place wdt:P131 wd:Q6225.
?sitelink schema:about ?place
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?place ?placeLabel ?placeDescription
ORDER BY DESC(?count)

Query found at

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