Description
The --all flag for the card list command is currently failing to return closed cards. Only open cards (or an empty array) are returned, even when the board contains closed items.
Steps to Reproduce
- Select or create a board with at least one closed card.
- Run the following command:
fizzy card list --board <board-id> --all
- Observe the output.
Expected Behavior
The --all flag should include both open and closed cards associated with the specified board.
Actual Behavior
The command returns only open cards or an empty array if no open cards are present.
Workarounds
- Closed cards can still be retrieved individually using
fizzy card show <card-number>.
- The
search command appears to correctly identify and return closed cards.
Context
I am currently developing a TUI for fizzy-cli. This bug prevents the implementation of a "Done" column or any view requiring the full history of a board, as there is currently no efficient way to fetch all closed cards at once.
Description
The
--allflag for thecard listcommand is currently failing to return closed cards. Only open cards (or an empty array) are returned, even when the board contains closed items.Steps to Reproduce
Expected Behavior
The
--allflag should include both open and closed cards associated with the specified board.Actual Behavior
The command returns only open cards or an empty array if no open cards are present.
Workarounds
fizzy card show <card-number>.searchcommand appears to correctly identify and return closed cards.Context
I am currently developing a TUI for
fizzy-cli. This bug prevents the implementation of a "Done" column or any view requiring the full history of a board, as there is currently no efficient way to fetch all closed cards at once.