steampipe-plugin-gitlab
steampipe-plugin-gitlab copied to clipboard
Investigate new properties on ListOptions for "push-down".
ListOptions has been updated to include:
// For keyset-based paginated result sets, name of the column by which to order
OrderBy string `url:"order_by,omitempty" json:"order_by,omitempty"`
// For keyset-based paginated result sets, the value must be `"keyset"`
Pagination string `url:"pagination,omitempty" json:"pagination,omitempty"`
// For keyset-based paginated result sets, sort order (`"asc"`` or `"desc"`)
Sort string `url:"sort,omitempty" json:"sort,omitempty"`
With a newer Steampipe SDK we can potentially push these down and reduce pagination calls?