-
Notifications
You must be signed in to change notification settings - Fork 6
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 filters ids and type #210
base: v0.x.x
Are you sure you want to change the base?
Conversation
Marenz
commented
Oct 24, 2024
- Add filter support for ids and type
Signed-off-by: Mathias L. Baumann <[email protected]>
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.
Other than that, LGTM.
// - To retrieve dispatches with ids containing 123 (e.g.: [5123, 1234, 1235, 123]): | ||
// filter { ids: [123] } | ||
// - To retrieve dispatches with ids containing 1 and 5 (e.g.: [5, 1, 15, 51]): | ||
// filter { ids: [1, 5] } |
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.
Shouldn't this say "or" instead of "and"? If it is "and", I would expect 5 and 1 not to match.
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.
true, though this will be changed again once UX made up their mind what they even want
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.
Then I guess we wait...