query-2c9d28872b4d016dbc790f27e28f4b15
title:Representations (in the Ottoman script) 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 . FILTER(LANG(?representation)="ota") }
Use at
- https://query.wikidata.org/sparql
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 Ottoman script) 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 .
    FILTER(LANG(?representation)="ota")
}
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[["?representation = 'ota'"]]
  f0 --> v1
  v2 --"dct:language"-->  c3
  v2 --"wikibase:lexicalCategory"-->  c5
  v2 --"ontolex:lexicalForm"-->  v3
  v3 --"ontolex:representation"-->  v1