Skip to content

Commit

Permalink
Create query_adverbs.sparql
Browse files Browse the repository at this point in the history
  • Loading branch information
KesharwaniArpita authored Oct 9, 2024
1 parent adc7af3 commit f5e31b8
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) 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:Q150 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?lemma .

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

0 comments on commit f5e31b8

Please sign in to comment.