query-2bc590235b8cb47b0c535b5de321b574

rq turtle/ttl

title:Representations from forms on Turkish noun lexemes SELECT ?lexeme ?form ?representation { ?lexeme dct:language wd:Q256 . ?lexeme wikibase:lexicalCategory wd:Q1084 . ?lexeme ontolex:lexicalForm ?form . ?form ontolex:representation ?representation . }

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 from forms on Turkish noun lexemes
SELECT ?lexeme ?form ?representation {
    ?lexeme dct:language wd:Q256 .
    ?lexeme wikibase:lexicalCategory wd:Q1084 .
    ?lexeme ontolex:lexicalForm ?form .
    ?form ontolex:representation ?representation .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?form"):::projected v1("?lexeme"):::projected v3("?representation"):::projected c2(["wd:Q256"]):::iri c4(["wd:Q1084"]):::iri v1 --"dct:language"--> c2 v1 --"wikibase:lexicalCategory"--> c4 v1 --"ontolex:lexicalForm"--> v2 v2 --"ontolex:representation"--> v3