query-ec3816ba2f1663a6f1469ece88c34559
TODO
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#>
select ?representation {
?lexeme <http://purl.org/dc/terms/language> wd:Q1860.
?lexeme wikibase:lexicalCategory wd:Q1084 .
?lexeme ontolex:lexicalForm ?form .
?form ontolex:representation ?representation .
?form wikibase:grammaticalFeature wd:Q110786 .
} order by uuid() limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?form")
v1("?lexeme")
v3("?representation"):::projected
c4(["wd:Q1084"]):::iri
c8(["wd:Q110786"]):::iri
c2(["wd:Q1860"]):::iri
v1 --http://purl.org/dc/terms/language--> c2
v1 --"wikibase:lexicalCategory"--> c4
v1 --"ontolex:lexicalForm"--> v2
v2 --"ontolex:representation"--> v3
v2 --"wikibase:grammaticalFeature"--> c8