14 lines
308 B
GraphQL
14 lines
308 B
GraphQL
mutation updateProjectLabel($projectLabelID: UUID!, $labelColorID: UUID!, $name: String!) {
|
|
updateProjectLabel(input:{projectLabelID:$projectLabelID, labelColorID: $labelColorID, name: $name}) {
|
|
id
|
|
createdDate
|
|
labelColor {
|
|
id
|
|
colorHex
|
|
name
|
|
position
|
|
}
|
|
name
|
|
}
|
|
}
|