Skip to content

Commit

Permalink
Main
Browse files Browse the repository at this point in the history
<!---
Thank you for your pull request! 🚀
-->

### Contributor checklist

<!-- Please replace the empty checkboxes [] below with checked ones [x] accordingly. -->

- [x] This pull request is on a [separate branch](https://docs.github.com/en/get-started/quickstart/github-flow) and not the main branch

---

### Description

<!--
Describe briefly what your pull request proposes to change. Especially if you have more than one commit, it is helpful to give a summary of what your contribution is trying to solve.

Also, please describe shortly how you tested that your change actually works.
-->

### Related issue

<!--- Scribe-Data prefers that pull requests be related to already open issues. -->
<!--- If applicable, please link to the issue by replacing ISSUE_NUMBER with the appropriate number below. -->
<!--- Feel free to delete this section if this does not apply. -->

- scribe-org#302
  • Loading branch information
Nowshin1077 committed Oct 10, 2024
1 parent b7a0f82 commit 8ae8668
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# tool: scribe-data
# All Bengali (Q9610) adverbs.
# Enter this query at https://query.wikidata.org/.

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

WHERE {
?lexeme dct:language wd:Q9610 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?lemma .

SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE]".
?lemma rdfs:label ?adverbs .
}
}



0 comments on commit 8ae8668

Please sign in to comment.