You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Metadata module's OSAllLocatorsRequest message contains a cosmos.base.query.v1beta1.PageRequest message, but the module's query_serverOSAllLocators method does not use the query.Paginate or query.FilteredPaginate methods. So not all pagination functionality is available on that query, e.g. pagination using a next_key and key.
Problem Definition
Most of the other paginated queries have full pagination support, so not having it here can cause confusion and frustration. Additionally, there's no way to know how many results there are without getting all of them.
Proposal
Refactor the Metadata module's OSAllLocators query to use either the query.Paginate or query.FilteredPaginate function in order to enable full pagination support.
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Summary
The Metadata module's
OSAllLocatorsRequest
message contains acosmos.base.query.v1beta1.PageRequest
message, but the module'squery_server
OSAllLocators
method does not use thequery.Paginate
orquery.FilteredPaginate
methods. So not all pagination functionality is available on that query, e.g. pagination using anext_key
andkey
.Problem Definition
Most of the other paginated queries have full pagination support, so not having it here can cause confusion and frustration. Additionally, there's no way to know how many results there are without getting all of them.
Proposal
Refactor the Metadata module's
OSAllLocators
query to use either thequery.Paginate
orquery.FilteredPaginate
function in order to enable full pagination support.For Admin Use
The text was updated successfully, but these errors were encountered: