Endpoint
Retrieves all tasks from the database
Request
This endpoint does not require any parameters or request body.Example Request
Response
An array of task objects
Status Codes
Successfully retrieved the list of tasks
Example Response
200 OK
Implementation Details
This endpoint is defined insrc/routes/tasks/tasks.routes.ts:11-21 and implemented in src/routes/tasks/tasks.handlers.ts:13-16.
The response schema is validated using the selectTasksSchema from src/db/schema.ts:21, which is generated from the Drizzle ORM schema definition.