| <aid="mutationepicboardlistcreateerrors"></a>`errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| <aid="mutationepicboardlistcreatelist"></a>`list` | [`EpicList`](#epiclist) | Epic list in the epic board. |
### `Mutation.epicBoardListDestroy`
Destroys an epic board list.
Input type: `EpicBoardListDestroyInput`
#### Arguments
| Name | Type | Description |
| ---- | ---- | ----------- |
| <aid="mutationepicboardlistdestroyclientmutationid"></a>`clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| <aid="mutationepicboardlistdestroylistid"></a>`listId` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the epic board list to destroy. |
#### Fields
| Name | Type | Description |
| ---- | ---- | ----------- |
| <aid="mutationepicboardlistdestroyclientmutationid"></a>`clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| <aid="mutationepicboardlistdestroyerrors"></a>`errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| <aid="mutationepicboardlistdestroylist"></a>`list` | [`EpicList`](#epiclist) | The epic board list. `null` if the board was destroyed successfully. |
expect(graphql_errors.first['message']).toinclude("The resource that you are attempting to access does not exist or you don't have permission to perform this action")
end
end
context'when the user has permission'do
beforedo
group.add_maintainer(current_user)
end
context'when given id is not for a list'do
# could be any non-list thing
let_it_be(:list){group}
it'returns an error'do
subject
expect(graphql_errors.first['message']).toinclude('does not represent an instance of')