query-8bd26b66fe88c36f8d06aee224465200
20:49, 26 December 2019 (UTC)) talk (InfovariusThis query times out. --: probably not with the SPARQL Wikidata Query Service, indeed it's too big (2 475 622 results right now!). If you really want to use it, you need to filter and/or to do a more simple query:Infovarius@
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 ?word ?grammaticalFeature
WHERE {
?l a ontolex:LexicalEntry ; dct:language wd:Q7737 ; wikibase:lexicalCategory wd:Q1084 ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form .
?form ontolex:representation ?word ; wikibase:grammaticalFeature ?grammaticalFeature .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?form")
v5("?grammaticalFeature"):::projected
v1("?l"):::projected
v2("?lemma"):::projected
v4("?word"):::projected
c2(["ontolex:LexicalEntry"]):::iri
c6(["wd:Q1084"]):::iri
c4(["wd:Q7737"]):::iri
v1 --"a"--> c2
v1 --"dct:language"--> c4
v1 --"wikibase:lexicalCategory"--> c6
v1 --"wikibase:lemma"--> v2
v1 --"ontolex:lexicalForm"--> v3
v3 --"ontolex:representation"--> v4
v3 --"wikibase:grammaticalFeature"--> v5