query-1c64d346a035764f07275ec9a8dbd5fb
Příklad - české lexémy
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?l ?lemma WHERE {
?l a ontolex:LexicalEntry ;
dct:language wd:Q9056 ; #české lexémy
wikibase:lemma ?lemma .
} LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?l"):::projected
v2("?lemma"):::projected
c2(["ontolex:LexicalEntry"]):::iri
c4(["wd:Q9056"]):::iri
v1 --"a"--> c2
v1 --"dct:language"--> c4
v1 --"wikibase:lemma"--> v2