query-ed1d6ac93baec8bfb399b4607bbc015e

rq turtle/ttl

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

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

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:Q56648701"]):::iri c3(["wd:Q12107"]):::iri f0[["not regex(?form,'^#91;fzcFZC#93;')"]] f0 --> v1 v2 --"dct:language"--> c3 v2 --"ontolex:lexicalForm"--> v3 v3 --"wikibase:grammaticalFeature"--> c6 v3 --"ontolex:representation"--> v1