query-8c6ccbebce8312b171eb5959cc6a146c
title:Forms with "hard mutation" not starting with a hard letter SELECT * WHERE { ?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f . ?f wikibase:grammaticalFeature wd:Q97130345 ; ontolex:representation ?form . FILTER (!REGEX(?form,"^[ktpKTP]")) }
Use at
- https://query.wikidata.org/sparql
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 "hard mutation" not starting with a hard letter
SELECT * WHERE {
?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f .
?f wikibase:grammaticalFeature wd:Q97130345 ; ontolex:representation ?form .
FILTER (!REGEX(?form,"^[ktpKTP]"))
}
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:Q97130345"]):::iri
c3(["wd:Q12107"]):::iri
f0[["not regex(?form,'^#91;ktpKTP#93;')"]]
f0 --> v1
v2 --"dct:language"--> c3
v2 --"ontolex:lexicalForm"--> v3
v3 --"wikibase:grammaticalFeature"--> c6
v3 --"ontolex:representation"--> v1