Iterate over workflows
- async AsyncCogniteClient.workflows.__call__(
- chunk_size: int | None = None,
- limit: int | None = None,
Iterate over workflows
- Parameters:
chunk_size (int | None) – The number of workflows to return in each chunk. Defaults to yielding one workflow at a time.
limit (int | None) – Maximum number of workflows to return. Defaults to returning all items.
- Yields:
Workflow | WorkflowList – Yields Workflow one by one if chunk_size is None, otherwise yields WorkflowList objects.