get

abstract suspend fun get(request: GetTasksRequest): Task?

Retrieves a task based on the specified request parameters.

Return

The task matching the request parameters, or null if not found.

Parameters

request

The request parameters to filter tasks.


abstract suspend fun get(planId: UUID): List<Task>

Retrieves all tasks for a specific plan.

Return

A list of tasks associated with the specified plan.

Parameters

planId

The unique identifier of the plan.