Skip to content

Commit

Permalink
simple sparql query for fetching Tamil adjectives from wikidata
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarAI2003 committed Oct 16, 2024
1 parent 76ad3c9 commit f1f5d80
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# tool: scribe-data
# All Tamil (Q5885) adjectives.
# Enter this query at https://query.wikidata.org/.

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

WHERE {
?lexeme dct:language wd:Q5885 ;
wikibase:lexicalCategory wd:Q34698 ;
wikibase:lemma ?adjective .

FILTER(lang(?adjective) = "ta")
}

0 comments on commit f1f5d80

Please sign in to comment.