query-2ff94c42bdb4bec5f9fe2807ff816377
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?l ?lemma ?myPartLabel ?genderLabel ?word (GROUP_CONCAT(DISTINCT ?grammaticalFeature; SEPARATOR=', ') AS ?lem)
WHERE {
?l a ontolex:LexicalEntry ; dct:language ?language ;
wikibase:lexicalCategory ?myPart ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
values ?myPart { wd:Q1084 wd:Q34698 wd:Q24905 wd:Q380057}
?form ontolex:representation ?word ;
wikibase:grammaticalFeature ?grammaticalFeature .
?language wdt:P218 'ru'.
optional { ?l wdt:P5185 ?gender. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
} GROUP BY ?l ?lemma ?myPartLabel ?genderLabel ?word ?lem