Skip to content

Commit

Permalink
Create query_adjectives.sparql
Browse files Browse the repository at this point in the history
  • Loading branch information
KesharwaniArpita authored Oct 9, 2024
1 parent e2ce7d1 commit cae1e72
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 Italian (Q652) adjectives.
# 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:Q652 ;
wikibase:lexicalCategory wd:Q34698 ;
wikibase:lemma ?lemma .

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

0 comments on commit cae1e72

Please sign in to comment.