From af0a1ac2df6c83aea159ab610db34e19f9377df1 Mon Sep 17 00:00:00 2001 From: KimYeonWoo Date: Tue, 22 Oct 2024 01:48:41 +0900 Subject: [PATCH] korean noun pr --- .../Korean/query_nouns.sparql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/scribe_data/language_data_extraction/Korean/query_nouns.sparql diff --git a/src/scribe_data/language_data_extraction/Korean/query_nouns.sparql b/src/scribe_data/language_data_extraction/Korean/query_nouns.sparql new file mode 100644 index 000000000..75f92721b --- /dev/null +++ b/src/scribe_data/language_data_extraction/Korean/query_nouns.sparql @@ -0,0 +1,14 @@ +# tool: scribe-data +# Enter this query at https://query.wikidata.org/. + +SELECT DISTINCT + (REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) +?pronoun + +WHERE { + VALUES ?nounTypes {wd:Q36224 wd:Q1084} + + ?lexeme dct:language wd:Q9176 ; + wikibase:lexicalCategory ?nounTypes ; + wikibase:lemma ?pronoun +}