When using the SPARQL endpoint, it appears that the luc:text index is not working. Before, this query worked fine:
SELECT ?Subject ?Term {
?Subject a skos:Concept ;
luc:text "red" ;
skos:inScheme aat: ;
skosxl:prefLabel [xl:literalForm ?Term] .
}
But now it returns no results. Switching the index to luc:term does work:
SELECT ?Subject ?Term {
?Subject a skos:Concept ;
luc:term "red" ;
skos:inScheme aat: ;
skosxl:prefLabel [xl:literalForm ?Term] .
}
Is this a known issue? Were there recent changes to the engine that account for this?
Thanks,
Jim