diff --git a/src/scribe_data/language_data_extraction/Swedish/adjectives/query_adjectives.sparql b/src/scribe_data/language_data_extraction/Swedish/adjectives/query_adjectives.sparql new file mode 100644 index 000000000..0bef8ebab --- /dev/null +++ b/src/scribe_data/language_data_extraction/Swedish/adjectives/query_adjectives.sparql @@ -0,0 +1,13 @@ +# tool: scribe-data +# All Swedish (Q9027) adjectives and the given forms. +# Enter this query at https://query.wikidata.org/. + +SELECT + (REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) + ?adjective + +WHERE { + ?lexeme dct:language wd:Q9027 ; + wikibase:lexicalCategory wd:Q34698 ; + wikibase:lemma ?adjective . +}