query-c00594f1b34f8ff54c017063217d45cc

rq turtle/ttl

Senses

Use at

PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX target: <http://www.wikidata.org/entity/L2310>

SELECT 
  ?sense
  (SUBSTR(STR(?sense), 32) AS ?senseLabel)
  (GROUP_CONCAT(?gloss; separator=" // ") AS ?glosses)
WHERE {
  target: ontolex:sense ?sense .
  ?sense skos:definition ?gloss .
}
GROUP BY ?sense

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?gloss"):::projected v4("?glosses") v1("?sense"):::projected v3("?senseLabel") c1([http://www.wikidata.org/entity/L2310]):::iri c1 --"ontolex:sense"--> v1 v1 --"skos:definition"--> v2 bind1[/"substring(str(?sense),'32^^xsd:integer')"/] v1 --o bind1 bind1 --as--o v3 bind2[/"?gloss"/] v2 --o bind2 bind2 --as--o v4