query-b80ed101c64a6e78c121099f16ca522c

rq turtle/ttl

TODO

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 ?wikiLabel (count(*) as ?count) WHERE
{
  ?item wdt:P972 wd:Q28781198 .
  ?item ^schema:about/schema:isPartOf/^wdt:P856 ?wiki .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} GROUP BY ?wikiLabel ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v2("?item") v3("?wiki") a1((" ")) a2((" ")) c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c2(["wd:Q28781198"]):::iri v2 --"wdt:P972"--> c2 a1 --"schema:about"--> v2 a1 --"schema:isPartOf"--> a2 v3 --"wdt:P856"--> a2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(*)"/] bind1 --as--o v4