query-8fd862803d5683f1f583eb099a7fca88

rq turtle/ttl

TODO

Use at

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 ?representation ?numberLabel ?caseLabel {
  VALUES (?lexeme) {(wd:L5100)}
  ?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" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?case") v2("?form") v1("?lexeme") v4("?number") v3("?representation"):::projected c8(["bd:serviceParam"]):::iri c10(["fi"]):::literal c5(["wd:Q104083"]):::iri c6(["wd:Q128234"]):::iri bind0[/VALUES ?lexeme/] bind0-->v1 bind00(["wd:L5100"]) bind00 --> bind0 v1 --"ontolex:lexicalForm"--> v2 v2 --"ontolex:representation"--> v3 v2 --"wikibase:grammaticalFeature"--> v4 v2 --"wikibase:grammaticalFeature"--> v5 v4 --"wdt:P31"--> c5 v5 --"wdt:P31"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end