We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94a797a commit 72b9b42Copy full SHA for 72b9b42
src/monday_sdk/modules/boards.py
@@ -50,8 +50,8 @@ def fetch_all_items_by_board_id(
50
def _fetch_all_items(
51
self,
52
board_id: Union[int, str],
53
- query_params: Optional[Mapping[str, Any]],
54
- limit: int,
+ query_params: Optional[Mapping[str, Any]] = None,
+ limit: Optional[int] = DEFAULT_PAGE_LIMIT_ITEMS,
55
) -> List[Item]:
56
"""Internal method for standard item fetching with pagination."""
57
items: List[Item] = []
0 commit comments