Paginate catalyst logs query results with cursors
The Catalyst CLI’s logs query command now supports cursor-based pagination, so you can page through more than --limit entries in a single time window instead of only ever seeing the newest ones.
--after <cursor>— fetch the next (older) page, using theend_cursorfrom a previous page--before <cursor>— fetch the previous (newer) page, using thestart_cursorfrom a previous page- Printed hints — when more entries are available, the CLI prints a ready-to-run command with the right
--after/--beforeflag already filled in;--format jsonemits the cursors as a trailing{"meta": ...}line instead
For details, see the Catalyst CLI reference.