query-b4f003dbfcac88ef2c29b4543d6061cb

rq turtle/ttl

Propertiesmaintained by WikiProject (P6104)

Use at

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#>
SELECT 
  DISTINCT 
  ?item ?itemLabel ?sitelinks
WHERE {
   {
  SELECT DISTINCT ?item ?sitelinks
  WHERE {
    ?item wdt:P6104 wd:Q56241615 .  
    ?item wikibase:sitelinks ?sitelinks.
  }
  GROUP BY ?item ?sitelinks
}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }  
}
GROUP BY ?item ?itemLabel ?sitelinks
ORDER BY DESC(?sitelinks)
LIMIT 200

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?sitelinks"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q56241615"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P6104"--> c2 v2 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end