query-385549e58ec4fc000ed560c665031f9b

rq turtle/ttl

title:Representations (in the Latin script) from forms on Turkish noun lexemes that precede "et" alphabetically SELECT ?lexeme ?form ?representation { ?lexeme dct:language wd:Q256 . ?lexeme wikibase:lexicalCategory wd:Q1084 . ?lexeme ontolex:lexicalForm ?form . ?form ontolex:representation ?representation . FILTER(STR(?representation) < "et") }

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 dct: <http://purl.org/dc/terms/>
#title:Representations (in the Latin script) from forms on Turkish noun lexemes that precede "et" alphabetically
SELECT ?lexeme ?form ?representation {
    ?lexeme dct:language wd:Q256 .
    ?lexeme wikibase:lexicalCategory wd:Q1084 .
    ?lexeme ontolex:lexicalForm ?form .
    ?form ontolex:representation ?representation .
    FILTER(STR(?representation) < "et")
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?form"):::projected v2("?lexeme"):::projected v1("?representation"):::projected c3(["wd:Q256"]):::iri c5(["wd:Q1084"]):::iri f0[["str(?representation) < 'et'"]] f0 --> v1 v2 --"dct:language"--> c3 v2 --"wikibase:lexicalCategory"--> c5 v2 --"ontolex:lexicalForm"--> v3 v3 --"ontolex:representation"--> v1