TrelloLoader(
self,
client: TrelloClient,
board_name: str,
*,
include_card_name: bool| Name | Type | Description |
|---|---|---|
client* | TrelloClient | Trello API client. |
board_name* | str | The name of the Trello board. |
include_card_name | bool | Default: TrueWhether to include the name of the card in the document. |
include_comments | bool | Default: True |
include_checklist | bool | Default: True |
card_filter | Literal['closed', 'open', 'all'] | Default: 'all' |
extra_metadata | Tuple[str, ...] | Default: ('due_date', 'labels', 'list', 'closed') |
Load cards from a Trello board.
Whether to include the comments on the card in the document.
Whether to include the checklist on the card in the document.
Filter on card status. Valid values are "closed", "open", "all".
List of additional metadata fields to include as document metadata.Valid values are "due_date", "labels", "list", "closed".