Skip to content

Commit

Permalink
Merge pull request #259 from KesharwaniArpita/ArpitaContributionsUrdu
Browse files Browse the repository at this point in the history
Create query_adverbs.sparql to incorporate the urdu adverbs
  • Loading branch information
andrewtavis authored Oct 7, 2024
2 parents bf187a4 + dae3611 commit b291110
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# tool: scribe-data
# All Urdu (from Hindustani Q11051) adverbs.
# Enter this query at https://query.wikidata.org/.
# Note the necessity to filter for "ur" to remove Hindi (hi) words.

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

WHERE {
?lexeme dct:language wd:Q11051 ; # Urdu language (from Hindustani)
wikibase:lexicalCategory wd:Q380057 ; # Adverbs
wikibase:lemma ?adverb .

BIND(lang(?adverb) as ?langAdverb)
FILTER(?langAdverb = "ur")
}

0 comments on commit b291110

Please sign in to comment.