ordia icon indicating copy to clipboard operation
ordia copied to clipboard

Error with example use for form aspect

Open fnielsen opened this issue 9 months ago • 0 comments

See https://ordia.toolforge.org/L1367947-F1

A ?value variable is missing

# Data for a specific sense
SELECT
  ?description ?descriptionUrl
  ?value
  (?valueLabel AS ?value_) ?value_Url
  ?source ?sourceUrl
WHERE {
  VALUES ?form { wd:L660726-F1 }
  {   
    BIND(26 AS ?order)
    ?lexeme ontolex:lexicalForm ?form .
    ?lexeme p:P5831 ?value_statement .
    ?value_statement ps:P5831 ?value .
    ?value_statement pq:P5830 ?form .
    ?lexeme dct:language / wdt:P424 ?language_code .
    BIND(CONCAT("./text-to-lexemes?text-language=",
		ENCODE_FOR_URI(?language_code),
		"&text=",
		ENCODE_FOR_URI(?value)) AS ?value_Url)
    BIND("example use" AS ?description)
  }
}
ORDER BY ?order

fnielsen avatar Jul 04 '25 22:07 fnielsen