diff --git a/src/scribe_data/language_data_extraction/Polish/adjectives/query_adjective.sparql b/src/scribe_data/language_data_extraction/Polish/adjectives/query_adjective.sparql new file mode 100644 index 00000000..c03f00ac --- /dev/null +++ b/src/scribe_data/language_data_extraction/Polish/adjectives/query_adjective.sparql @@ -0,0 +1,13 @@ +# tool: scribe-data +# All Polish (Q809) adjectives (Q34698) 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:Q809 ; + wikibase:lexicalCategory wd:Q34698 ; + wikibase:lemma ?adjective . +} diff --git a/src/scribe_data/language_data_extraction/Polish/adverbs/query_adverbs.sparql b/src/scribe_data/language_data_extraction/Polish/adverbs/query_adverbs.sparql new file mode 100644 index 00000000..cf2ca7cd --- /dev/null +++ b/src/scribe_data/language_data_extraction/Polish/adverbs/query_adverbs.sparql @@ -0,0 +1,13 @@ +# tool: scribe-data +# All Polish (Q809) adverbs (Q380057) and the given forms. +# Enter this query at https://query.wikidata.org/. + +SELECT + (REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) + ?adverb + +WHERE { + ?lexeme dct:language wd:Q809 ; + wikibase:lexicalCategory wd:Q380057 ; + wikibase:lemma ?adverb . +} diff --git a/src/scribe_data/language_data_extraction/Polish/prepositions/query_prepositions.sparql b/src/scribe_data/language_data_extraction/Polish/prepositions/query_prepositions.sparql new file mode 100644 index 00000000..cd044d13 --- /dev/null +++ b/src/scribe_data/language_data_extraction/Polish/prepositions/query_prepositions.sparql @@ -0,0 +1,13 @@ +# tool: scribe-data +# All Polish (Q809) prepositions (Q4833830) and the given forms. +# Enter this query at https://query.wikidata.org/. + +SELECT + (REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) + ?preposition + +WHERE { + ?lexeme dct:language wd:Q809 ; + wikibase:lexicalCategory wd:Q4833830 ; + wikibase:lemma ?preposition . +}