Skip to content

Commit

Permalink
#271 Baseline Punjabi queries
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Oct 24, 2024
1 parent 9329960 commit f14a335
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Gurmukhi (from Punjabi Q58635) adjectives (Q34698) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q34698 ;
wikibase:lemma ?adjective .
FILTER(lang(?adjective) = "pa")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Gurmukhi (from Punjabi Q58635) adverbs (Q380057) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?adverb .
FILTER(lang(?adverb) = "pa")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Gurmukhi (from Punjabi Q58635) prepositions (Q4833830) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition .
FILTER(lang(?preposition) = "pa")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Shahmukhi (from Punjabi Q58635) adjectives (Q34698) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q34698 ;
wikibase:lemma ?adjective .
FILTER(lang(?adjective) = "pnb")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Shahmukhi (from Punjabi Q58635) adverbs (Q380057) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?adverb .
FILTER(lang(?adverb) = "pnb")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Shahmukhi (from Punjabi Q58635) prepositions (Q4833830) and the given forms.
# 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:Q58635 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition .
FILTER(lang(?preposition) = "pnb")
}

0 comments on commit f14a335

Please sign in to comment.