query-9ffeadce993ccf7f4f974f90a26c87ea
Arabic lexemes with multiple lemmata has multiple lemmata. Lexeme:L63672Hello, I want to write a query to show Arabic lexemes with multiple lemmata, similar to how the Hebrew lexeme So far, I have this query that shows me all Arabic lexemes, but I'm not sure how to specify the lemmata element. Any help would be appreciated!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?lexemeId ?lemma
WHERE {
?lexemeId dct:language wd:Q13955;
wikibase:lemma ?lemma.}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?lemma"):::projected
v1("?lexemeId"):::projected
c2(["wd:Q13955"]):::iri
v1 --"dct:language"--> c2
v1 --"wikibase:lemma"--> v2