query-1d11b39d9909b128f21fd5f203d7eabe

rq turtle/ttl

Adessive case ends with 'llA' SELECT ?lexeme ?word ?form ?label WHERE { ?lexeme a ontolex:LexicalEntry ; dct:language wd:Q1412 ; wikibase:lemma ?word ; ontolex:lexicalForm ?form .

?form ontolex:representation ?label ; wikibase:grammaticalFeature wd:Q281954 .

FILTER NOT EXISTS { ?form ontolex:representation ?label ; wikibase:grammaticalFeature wd:Q281954 . FILTER(STRENDS(?label, 'lla')|| STRENDS(?label, 'llä')) } }

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/>
# Adessive case ends with 'llA'
SELECT ?lexeme ?word ?form ?label WHERE {
  ?lexeme a ontolex:LexicalEntry ; 
            dct:language wd:Q1412 ; 
            wikibase:lemma ?word ;
            ontolex:lexicalForm ?form .

  ?form ontolex:representation ?label ;
        wikibase:grammaticalFeature wd:Q281954 .

  FILTER NOT EXISTS {
    ?form ontolex:representation ?label ;
          wikibase:grammaticalFeature wd:Q281954 .
    FILTER(STRENDS(?label, 'lla')|| STRENDS(?label, 'llä'))
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?form"):::projected v1("?label"):::projected v3("?lexeme"):::projected v4("?word"):::projected c7(["ontolex:LexicalEntry"]):::iri c5(["wd:Q281954"]):::iri c9(["wd:Q1412"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["(ends-with(?label,'lla') || ends-with(?label,'llä'))"]] e0f0 --> e0v1 e0v2 --"ontolex:representation"--> e0v1 e0v2 --"wikibase:grammaticalFeature"--> e0c5 e0v2("?form"):::projected e0v1("?label"):::projected e0c5(["wd:Q281954"]):::iri end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c3 f0 --> c4 f0 --> c5 f1[["(ends-with(?label,'lla') || ends-with(?label,'llä'))"]] f1 --> v1 v2 --"ontolex:representation"--> v1 v2 --"wikibase:grammaticalFeature"--> c5 v3 --"a"--> c7 v3 --"dct:language"--> c9 v3 --"wikibase:lemma"--> v4 v3 --"ontolex:lexicalForm"--> v2 v2 --"ontolex:representation"--> v1 v2 --"wikibase:grammaticalFeature"--> c5