query-c6af66977443fa7c10ee832147d4e9a4
title:Mutable words without mutation grammatical features (k only for now) SELECT ?l ?representation ?initial WHERE { ?l dct:language wd:Q12107 ; wikibase:lemma ?lemma . ?l ontolex:lexicalForm ?form . ?form ontolex:representation ?representation . BIND ( SUBSTR(STR(?representation),1,1) AS ?initial ) FILTER ( ?initial = "k" ) #extend to k, t, p, g, d, b, m for "no mutation" + other letters for other mutations MINUS { ?form wikibase:grammaticalFeature wd:Q101252532 } } } ORDER BY ?lemma
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:Mutable words without mutation grammatical features (k only for now)
SELECT ?l ?representation ?initial WHERE {
?l dct:language wd:Q12107 ; wikibase:lemma ?lemma .
?l ontolex:lexicalForm ?form .
?form ontolex:representation ?representation .
BIND ( SUBSTR(STR(?representation),1,1) AS ?initial )
FILTER ( ?initial = "k" ) #extend to k, t, p, g, d, b, m for "no mutation" + other letters for other mutations
MINUS { ?form wikibase:grammaticalFeature wd:Q101252532 }
}
}
ORDER BY ?lemma