query-ad460f64253cd9e8d349dc80dea70cc1

rq turtle/ttl

A lexeme form that has exactly the given featuresLexeme forms have grammatical features. I can ask for all genitive plural forms of Croatian words like this:

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/>
SELECT ?form ?representation WHERE {
  ?lexemeId dct:language wd:Q6654;
    ontolex:lexicalForm ?form.
  ?form ontolex:representation ?representation ;
    wikibase:grammaticalFeature wd:Q146786 ;
    wikibase:grammaticalFeature wd:Q146233 .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?form"):::projected v1("?lexemeId") v3("?representation"):::projected c6(["wd:Q146786"]):::iri c2(["wd:Q6654"]):::iri c7(["wd:Q146233"]):::iri v1 --"dct:language"--> c2 v1 --"ontolex:lexicalForm"--> v2 v2 --"ontolex:representation"--> v3 v2 --"wikibase:grammaticalFeature"--> c6 v2 --"wikibase:grammaticalFeature"--> c7