query-12a025f5ed5ed5b25b761964fcab7b4a
TODO
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/>
SELECT ?form ?representation WHERE {
:::: ?lexemeId dct:language wd:Q6654;
:::: ontolex:lexicalForm ?form.
:::: ?form ontolex:representation ?representation ;
:::: wikibase:grammaticalFeature wd:Q145786 ;
:::: wikibase:grammaticalFeature wd:Q146233 .
::::
:::: filter not exists {
:::: ?form ontolex:representation ?representation ;
:::: wikibase:grammaticalFeature ?unwanted.
:::: filter(?unwanted not in (wd:Q145233,wd:Q145786) )
:::: }
::::}
::::