-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UIIN-2486 Added support for containsAny
match option in Advanced search
#2324
Conversation
607cc43
to
f86031a
Compare
}, | ||
contributor: { | ||
exactPhrase: 'contributors.name=="%{query.query}"', | ||
containsAll: 'contributors.name="*%{query.query}*"', | ||
startsWith: 'contributors.name="%{query.query}*"', | ||
containsAny: 'contributors.name any "*%{query.query}*"', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
contributors.name is a term
field, any
operator can be used only for a full text field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed it with Christine and she said that we should perform the search anyways even if there are no results
Kudos, SonarCloud Quality Gate passed! |
Description
Added support for
containsAny
match option in Advanced searchScreenshots
chrome_soEjTfa0jk.mp4
Issues
UIIN-2486
Related PRs
folio-org/stripes-smart-components#1409
folio-org/stripes-components#2162