Sign in or sign up before continuing. Don't have an account yet? Register now to get started.
Add support for Work Items - Delete
# Problem Statement
`client-go` package currently lacks support for deleting Work Items.
### Proposed Solution
Create a new `WorkItemsService` with:
* **Pre-defined data structures** matching common work item fields and operations
* **High-level functions** (`DeleteWorkItem()`) that abstract away GraphQL query construction
* **Automatic type conversion** from GraphQL response types to idiomatic Go types
* **Consistent API patterns** following the conventions established by `IssuesService` and other existing services
### docs:
* [Mutation.workItemDelete](https://docs.gitlab.com/api/graphql/reference/#mutationworkitemdelete)
* [Epic Work Item delete example](https://docs.gitlab.com/api/graphql/epic_work_items_api_migration_guide/#delete-an-epic-work-item)
task