Skip to content

Commit

Permalink
Merge pull request #314 from VNW22/Expand-Japanese-data-queries
Browse files Browse the repository at this point in the history
Added adverbs and prepositions for japanese
  • Loading branch information
andrewtavis authored Oct 10, 2024
2 parents 6b67a2e + 2905ea8 commit 890ae21
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Japanese (Q5287) adverbs.
# 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:Q5287 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?adverb .
FILTER(lang(?adverb) = "ja-hira")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Japanese (Q5287) prepositions.
# 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:Q5287 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition .
FILTER(lang(?preposition) = "ja-hira")
}

0 comments on commit 890ae21

Please sign in to comment.