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
It would be very helpful, to combine queries with an operator such as OR.
Scenario: Find all Tasks that are in Step “Export” independent of the status but not “closed”;
Possible filter query: "stepopen: Export" OR "stepinwork: Export" (… maybe combined with a project-condition)
The text was updated successfully, but these errors were encountered:
Hi Michael, assuming that the above push request is included in Kitodo, you would be able to write the following filter to search for Export-tasks of the project Example which are currently either in the open or in-work state:
"((stepopen:Export) OR (stepinwork:Export)) AND (project:Example)"
Please note that the project-filter is currently not implemented as a pattern search (meaning the query xampl will not match a project with the title Example). You can only filter for complete words or the entire project title, but no partial words (in contrast to the implementation of the generic search via the top search bar).
Hi Thomas, thanks for the implementation. As soon as the new feature is included in one of the next releases, we will use it.
Regarding the xampl note above: This is fine because the Extended Search menu includes the full project name anyway and than we have just to add the 2nd OR-condition.
It would be very helpful, to combine queries with an operator such as OR.
Scenario: Find all Tasks that are in Step “Export” independent of the status but not “closed”;
Possible filter query: "stepopen: Export" OR "stepinwork: Export" (… maybe combined with a project-condition)
The text was updated successfully, but these errors were encountered: