query-4b29f4dc8abc3f85836f4c1944be5386
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?lexeme ?representation ?numberLabel ?caseLabel {
?lexeme <http://purl.org/dc/terms/language> wd:Q1412.
?lexeme ontolex:lexicalForm ?form .
?form ontolex:representation ?representation .
?form wikibase:grammaticalFeature ?number , ?case .
?number wdt:P31 wd:Q104083 .
?case wdt:P31 wd:Q128234 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fi" }
} order by ?lexeme
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?case")
v2("?form")
v1("?lexeme"):::projected
v4("?number")
v3("?representation"):::projected
c10(["bd:serviceParam"]):::iri
c12(["fi"]):::literal
c7(["wd:Q104083"]):::iri
c8(["wd:Q128234"]):::iri
c2(["wd:Q1412"]):::iri
v1 --http://purl.org/dc/terms/language--> c2
v1 --"ontolex:lexicalForm"--> v2
v2 --"ontolex:representation"--> v3
v2 --"wikibase:grammaticalFeature"--> v4
v2 --"wikibase:grammaticalFeature"--> v5
v4 --"wdt:P31"--> c7
v5 --"wdt:P31"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end