List Workflows

async AsyncCogniteClient.workflows.list(
limit: int | None = 25,
) WorkflowList

List workflows in the project.

Parameters:

limit (int | None) – Maximum number of results to return. Defaults to 25. Set to -1, float(“inf”) or None

Returns:

Workflows in the CDF project.

Return type:

WorkflowList

Examples

List all workflows:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> res = client.workflows.list(limit=None)