-
Notifications
You must be signed in to change notification settings - Fork 109
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
added test #159
added test #159
Conversation
lib/query.dart
Outdated
/// Filter resources where [attribute] is less than [value]. | ||
/// | ||
/// [value] can be a single value or a list. If a list is used | ||
/// the query will return resources where [attribute] is equal | ||
/// to any of the values in the list. |
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.
I think lessThan, greaterThan, (and equal variants) only support 1 value, not array.
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.
updated
lib/query.dart
Outdated
static String greaterThanEqual(String attribute, dynamic value) => | ||
_addQuery(attribute, 'greaterThanEqual', value); | ||
|
||
/// Filter resources where by searching [attribute] for [value]. | ||
/// | ||
/// A fulltext index on [attribute] is required for this query to work. |
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.
I think it's not required since 1.3. Let's not mention fulltext index.
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.
updated
cookie_jar: ^3.0.1 | ||
device_info_plus: ^8.1.0 | ||
flutter_web_auth_2: ^2.0.4 | ||
http: ^0.13.5 | ||
package_info_plus: ^3.0.3 | ||
path_provider: ^2.0.13 | ||
web_socket_channel: ^2.3.0 | ||
universal_html: ^2.0.9 | ||
cookie_jar: ^4.0.3 | ||
device_info_plus: ^9.0.2 | ||
flutter_web_auth_2: ^2.1.4 | ||
http: '>=0.13.6 <1.0.1' | ||
package_info_plus: ^4.0.2 | ||
path_provider: ^2.0.15 | ||
web_socket_channel: ^2.4.0 | ||
universal_html: ^2.2.2 |
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.
Possible breakign change for cookie_jar, device_info_plus, package_info_plus,
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.
(just a comment. if it works, all good)
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.
working.
What does this PR do?
(Provide a description of what this PR does.)
Test Plan
(Write your test plan here. If you changed any code, please provide us with clear instructions on how you verified your changes work.)
Related PRs and Issues
(If this PR is related to any other PR or resolves any issue or related to any issue link all related PR and issues here.)
Have you read the Contributing Guidelines on issues?
(Write your answer here.)