Dreams:taxon-index

From DREAMS
Revision as of 13:58, 26 August 2022 by Fnielsen (talk | contribs) (Created page with "== Taxons == {{SPARQL | query= PREFIX dreams: <https://dreams.wikibase.cloud/entity/> PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/> SELECT ?reports ?taxon WITH { SELECT (COUNT(DISTINCT ?report) AS ?reports) ?taxon WHERE { ?report dreamst:P28 ?taxon . } GROUP BY ?taxon } AS %result WHERE { INCLUDE %result SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],da,en". } } ORDER BY DESC(?reports) }}")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Taxons

PREFIX dreams: <https://dreams.wikibase.cloud/entity/>
PREFIX dreamst: <https://dreams.wikibase.cloud/prop/direct/>

SELECT 
  ?reports
  ?taxon
WITH {
  SELECT
    (COUNT(DISTINCT ?report) AS ?reports)
    ?taxon
  WHERE {
    ?report dreamst:P28 ?taxon .
  }
  GROUP BY ?taxon
} AS %result
WHERE {
  INCLUDE %result
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],da,en". }
}
ORDER BY DESC(?reports)