Hi everyone, i encountered a problem when using the full-text search in genericFilter element i got this error JPQLException:
Exception Description: Problem compiling [select e from B e where e.id in :vNvkNoSMrQ].
[26, 30] The state field path ‘e.id’ cannot be resolved to a valid type.
The problem is that B has no .id, it has only two fields “code”, “description”.
The indexMapping is defined like this
@JmixEntitySearchIndex(entity = B.class)
public interface BIndexElastic {
@AutoMappedField(includeProperties =
{"code", "description"})
void bMapping();
}
the generic filter is defined like this
<genericFilter id="genericFilter" dataLoader="bDl"> <properties include=".*"/> </genericFilter>
Any help? Thanks