-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add search for objects list, #228
Conversation
Yep, unfortunately, there is no sorting in the search request, so the result with
I don't think we have any other option here, just the prefix. |
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.
This is just a part of #211 in fact. It's OK to have it, but I'd like to see more functionality exposed. The request language is rather rich, we can search by combination of attributes, we can do numeric matches and all of this should be available to users as well. They can add custom attributes right in the panel, so they should be able to make use of them. Specify "color=black" and "color=white", then get all those black cats via search (not name-based).
d9da178
to
5487ba8
Compare
85308fe
to
d30fee2
Compare
19f3425
to
38d5642
Compare
Signed-off-by: Mikhail Petrov <[email protected]>
95adae8
to
e1fbe5e
Compare
{ value: 'MatchStringEqual', title: 'equal' }, | ||
{ value: 'MatchStringNotEqual', title: 'not equal' }, | ||
{ value: 'MatchCommonPrefix', title: 'has prefix' }, | ||
].map((item) => ( |
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.
@roman-khimov updated, idk about "starts with", which parameter should I use?
closes #211
Signed-off-by: Mikhail Petrov [email protected]