Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-check-query-identifiers-script
Browse files Browse the repository at this point in the history
  • Loading branch information
DeleMike authored Oct 16, 2024
2 parents d37872c + ed67154 commit 620922e
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Standard Mandarin Chinese (Q727694) 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:Q727694 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?adverb .
FILTER(LANG(?adverb) = "zh") .
}
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# tool: scribe-data
# All Yoruba (Q34311) 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:Q34311 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition .
}

0 comments on commit 620922e

Please sign in to comment.