get-project-total-worklogs
Calculate total time logged across all issues in a Plane project by providing the project ID to track worklog data.
Instructions
Get total time logged across all issues in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project to get total worklogs from |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project to get total worklogs from",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}