Skip to content

Commit

Permalink
Merge pull request #404 from Otom-obhazi/patch-16
Browse files Browse the repository at this point in the history
Create query_verbs.sparql
  • Loading branch information
andrewtavis authored Oct 17, 2024
2 parents 801b3ad + 7eab5da commit 2f56620
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/scribe_data/check/check_project_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"Malay",
"Punjabi",
"Tajik",
"Igbo",
}

DATA_TYPES = {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# tool: scribe-data
# All Igbo (Q33578) verbs and the given forms.
# Enter this query at https://query.wikidata.org/.

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

WHERE {
?lexeme dct:language wd:Q33578 ;
wikibase:lexicalCategory wd:Q24905 ;
wikibase:lemma ?verb .
}

0 comments on commit 2f56620

Please sign in to comment.