query-abeb854d9e8d326701f2021eb094176f
title:Forms with "soft mutation" not starting with a soft letter SELECT * WHERE { ?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f . ?f wikibase:grammaticalFeature wd:Q56648699 ; ontolex:representation ?form . FILTER (!REGEX(?form,"^[gdbczvwoGDBCZVWO]")) }
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 "soft mutation" not starting with a soft letter
SELECT * WHERE {
?l dct:language wd:Q12107 ; ontolex:lexicalForm ?f .
?f wikibase:grammaticalFeature wd:Q56648699 ; ontolex:representation ?form .
FILTER (!REGEX(?form,"^[gdbczvwoGDBCZVWO]"))
}
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:Q56648699"]):::iri
c3(["wd:Q12107"]):::iri
f0[["not regex(?form,'^#91;gdbczvwoGDBCZVWO#93;')"]]
f0 --> v1
v2 --"dct:language"--> c3
v2 --"ontolex:lexicalForm"--> v3
v3 --"wikibase:grammaticalFeature"--> c6
v3 --"ontolex:representation"--> v1