Skip to content

Commit

Permalink
add Spanish query prepositions #291
Browse files Browse the repository at this point in the history
  • Loading branch information
catreedle committed Oct 10, 2024
1 parent 4973c17 commit 36d8317
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# tool: scribe-data
# All Spanish (Q1321) prepositions.
# 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:Q1321 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition ;
FILTER(lang(?preposition) = "es") .
}

0 comments on commit 36d8317

Please sign in to comment.