query-0b2d91b5541420c6cd78284b636f10b3

rq turtle/ttl

title:Forms with "no mutation" not starting with a mutable letter SELECT * WHERE { ?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f . ?f wikibase:grammaticalFeature wd:Q101252532 ; ontolex:representation ?form . FILTER (!REGEX(?form,"^[ktpgdbmKTPGDBM]")) }

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:Forms with "no mutation" not starting with a mutable letter
SELECT * WHERE {
  ?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f .
  ?f wikibase:grammaticalFeature wd:Q101252532 ; ontolex:representation ?form .
  FILTER (!REGEX(?form,"^[ktpgdbmKTPGDBM]"))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?f"):::projected v1("?form"):::projected v2("?l"):::projected c6(["wd:Q101252532"]):::iri c3(["wd:Q12107"]):::iri f0[["not regex(?form,'^#91;ktpgdbmKTPGDBM#93;')"]] f0 --> v1 v2 --"dct:language"--> c3 v2 --"ontolex:lexicalForm"--> v3 v3 --"wikibase:grammaticalFeature"--> c6 v3 --"ontolex:representation"--> v1