Skip to content

Commit

Permalink
Create query_prepositions.sparql
Browse files Browse the repository at this point in the history
  • Loading branch information
KesharwaniArpita authored Oct 9, 2024
1 parent f5e31b8 commit a8863ea
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# tool: scribe-data
# All French (Q150) prepositions.
# Enter this query at https://query.wikidata.org/.

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

WHERE {
?lexeme dct:language wd:Q150 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?lemma .

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

0 comments on commit a8863ea

Please sign in to comment.