query-f9547d120ccb47e0e16b5f8a90bad8ef

rq turtle/ttl

Itemsverb (Q24905)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?p ?pLabel ?count {
  {
    select ?prop (count (*) as ?count) {
      ?lexeme wikibase:lexicalCategory wd:Q24905 . # change the POS here
      ?lexeme ontolex:sense ?sense .
      ?sense a ontolex:LexicalSense .
      ?sense ?prop ?sth .
    } group by ?prop 
  }
  ?p wikibase:directClaim ?prop .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} order by desc(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count"):::projected v2("?lexeme") v6("?p"):::projected v4("?prop") v3("?sense") v5("?sth") c5(["ontolex:LexicalSense"]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q24905"]):::iri c10(["en"]):::literal v2 --"wikibase:lexicalCategory"--> c2 v2 --"ontolex:sense"--> v3 v3 --"a"--> c5 v3 -->v4--> v5 bind1[/"count(*)"/] bind1 --as--o v6 v6 --"wikibase:directClaim"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end