ordia icon indicating copy to clipboard operation
ordia copied to clipboard

Panel of instance count on lexical category-language aspect

Open fnielsen opened this issue 2 years ago • 0 comments

SELECT
  ?number_of_lexemes
  ?class ?classLabel
  ?example_lexeme
{
  {
    SELECT 
      ?class
      (COUNT(?lexeme) AS ?number_of_lexemes)
      (SAMPLE(?lexeme) AS ?example_lexeme)
    {
      ?lexeme wikibase:lexicalCategory wd:Q24905 ;
              dct:language wd:Q9035 ;
              wdt:P31 ?class .
    }
    GROUP BY ?class
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?number_of_lexemes)
LIMIT 10000

fnielsen avatar Jan 17 '23 11:01 fnielsen