query-97692a78f705a1559b5259b238d87b2b

rq turtle/ttl

TODO

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:Q146233 .

  filter not exists {
   ?form ontolex:representation ?representation ;
    wikibase:grammaticalFeature ?unwanted.
    filter(?unwanted !=wd:Q146233 )
            }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?form"):::projected v4("?lexemeId") v3("?representation"):::projected v1("?unwanted") c5(["wd:Q6654"]):::iri c1(["wd:Q146233"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?unwanted != 'wd:Q146233'"]] e0f0 --> e0v1 e0v2 --"ontolex:representation"--> e0v3 e0v2 --"wikibase:grammaticalFeature"--> e0v1 e0v2("?form"):::projected e0v3("?representation"):::projected e0v1("?unwanted"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f0 --> v3 f0 --> c3 f1[["?unwanted != 'wd:Q146233'"]] f1 --> v1 v2 --"ontolex:representation"--> v3 v2 --"wikibase:grammaticalFeature"--> v1 v4 --"dct:language"--> c5 v4 --"ontolex:lexicalForm"--> v2 v2 --"ontolex:representation"--> v3 v2 --"wikibase:grammaticalFeature"--> c1