Wikidata:Synia:buriallocation-index

From Wikidata
Jump to navigation Jump to search

Synia: Burial location

[edit]

Burial locations

[edit]
PREFIX target: <http://www.wikidata.org/entity/Q118220495>

SELECT 
  ?persons
  ?burial_location ?burial_locationLabel
  (CONCAT("#buriallocation/", SUBSTR(STR(?burial_location), 32)) AS ?burial_locationUrl)
  ?burial_locationDescription
WHERE {
  {
    SELECT
      (COUNT(*) AS ?persons)
      ?burial_location
    WHERE {
      ?person wdt:P119 ?burial_location .
    }
    GROUP BY ?burial_location
    ORDER BY DESC(?persons)
    LIMIT 500
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?persons)
Try it!