Closed rajdip-b closed 1 month ago
Right now, we can fetch two kinds of entities from the backend using CLI:
The logic is fully implemented. We would like to additionally implement the paginated response support for each of the command's list subcommand.
list
Ideally, we want to add the following additional optional parameters to each of the command's list sub-command:
-p, --page <page>, Index of the page
-l, --limit <items>, Total number of items per page
-o, --order <sort order>, order to sort by - either ascending (ASC) or descending (DESC)
--sort <field name>, Field to sort by
-s, --search <search>, Search term
You would need to make the changes to these files:
/attempt
Assigned the issue to @Nil2000!
:tada: This issue has been resolved in version 2.6.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Description
Right now, we can fetch two kinds of entities from the backend using CLI:
The logic is fully implemented. We would like to additionally implement the paginated response support for each of the command's
list
subcommand.Ideally, we want to add the following additional optional parameters to each of the command's
list
sub-command:-p, --page <page>, Index of the page
-l, --limit <items>, Total number of items per page
-o, --order <sort order>, order to sort by - either ascending (ASC) or descending (DESC)
--sort <field name>, Field to sort by
-s, --search <search>, Search term
Solution
You would need to make the changes to these files: