query-48da2fe0e9eee9ceb3033b78b62f71d3

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
SELECT ?l ?sense WHERE {
  {
    SELECT ?mening WHERE {
    ?mening wdt:P279 wd:Q183046.
    }
  }
  ?l a ontolex:LexicalEntry ; ontolex:sense ?sense .
  ?sense wdt:P31 ?mening .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?l"):::projected v1("?mening") v3("?sense"):::projected c4(["ontolex:LexicalEntry"]):::iri c2(["wd:Q183046"]):::iri v1 --"wdt:P279"--> c2 v2 --"a"--> c4 v2 --"ontolex:sense"--> v3 v3 --"wdt:P31"--> v1