query-cd955bb50e6750974fae157f65e323f4

rq turtle/ttl

title:Glosses (in English) containing "time" from senses on Turkish noun lexemes SELECT ?lexeme ?sense ?gloss { ?lexeme dct:language wd:Q256. ?lexeme wikibase:lexicalCategory wd:Q1084 . ?lexeme ontolex:sense ?sense . ?sense skos:definition ?gloss . FILTER(LANG(?gloss)="en") FILTER(CONTAINS(?gloss,"time")) }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
#title:Glosses (in English) containing "time" from senses on Turkish noun lexemes
SELECT ?lexeme ?sense ?gloss {
    ?lexeme dct:language wd:Q256.
    ?lexeme wikibase:lexicalCategory wd:Q1084 .
    ?lexeme ontolex:sense ?sense .
    ?sense skos:definition ?gloss .
    FILTER(LANG(?gloss)="en")
    FILTER(CONTAINS(?gloss,"time"))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?gloss"):::projected v2("?lexeme"):::projected v3("?sense"):::projected c4(["wd:Q256"]):::iri c6(["wd:Q1084"]):::iri f0[["contains(?gloss,'time')"]] f0 --> v1 f1[["?gloss = 'en'"]] f1 --> v1 v2 --"dct:language"--> c4 v2 --"wikibase:lexicalCategory"--> c6 v2 --"ontolex:sense"--> v3 v3 --"skos:definition"--> v1