You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should filter the one marriage of Obama because it was before 2000. However, the marriage is not filtered out. The query incorrectly gives one result.
The QLever UI shows the following error for the filter line:
Error while collecting suggestions:
ParseException, cause: ?qleverui_entity is not a valid relation for a filter.
If I change the filter to the equivalent FILTER(?date >= "2000-01-01"^^xsd:dateTime), QLever works correctly and filters out the result.
The QLever UI gives the following error for the filter line:
Error while collecting suggestions:
ParseException, cause: Multiple regex filters concatenated via || must currently all be PREFIX filters
The error seems to make no sense because concatenating FILTERs is not supported (see #273).
The text was updated successfully, but these errors were encountered:
As you already found out, qlever currently only supports relational filters when the left hand side is a variable, and not the (equivalent) commutative reformulation.
The Exception makes no sense in this case, qlever currently supports || if all the filters are prefix filters, but there is no concatenation here.
In general we are currently working on a more general implementation of Expressions, which will also improve the Filter's capabilities.
Please let me know, if you need a specific filter for your work, that is currently not supported (also not by rewriting the query), then I can possibly provide a quick hack.
should filter the one marriage of Obama because it was before 2000. However, the marriage is not filtered out. The query incorrectly gives one result.
The QLever UI shows the following error for the filter line:
If I change the filter to the equivalent
FILTER(?date >= "2000-01-01"^^xsd:dateTime)
, QLever works correctly and filters out the result.The QLever UI gives the following error for the filter line:
The error seems to make no sense because concatenating FILTERs is not supported (see #273).
The text was updated successfully, but these errors were encountered: