Skip to content

Commit

Permalink
feat : Korean adverbs and postpositions added
Browse files Browse the repository at this point in the history
  • Loading branch information
Calabi8907 committed Oct 11, 2024
1 parent c0d3b09 commit 04346fb
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# tool: scribe-data
# All Korean (Q9176) Adverbs
# Enter this query at https://query.wikidata.org/.

SELECT DISTINCT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?Adverbs

WHERE {
VALUES ?adverbTypes {wd:Q380057} # Adverbs

?lexeme dct:language wd:Q9176 ; # Korean language
wikibase:lexicalCategory ?adverbTypes ;
wikibase:lemma ?Adverbs . # Return adverb

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# tool: scribe-data
# All Korean (Q9176) Adverbs
# Enter this query at https://query.wikidata.org/.

SELECT DISTINCT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?Postpositions

WHERE {
VALUES ?postpositionTypes {wd:Q161873} # Postpositions

?lexeme dct:language wd:Q9176 ; # Korean language
wikibase:lexicalCategory ?postpositionTypes ;
wikibase:lemma ?Postpositions . # Return postpositions

}

0 comments on commit 04346fb

Please sign in to comment.