Variable updateItemNumberMutation

Source
Expand description

GraphQL mutation for updating a number field value of a project item.

remarks

This mutation updates a numeric field on an item in a GitHub Project V2. It requires the project ID, item ID, field ID, and the new number value.

example
mutation updateItemField($projectId: ID!, $itemId: ID!, $fieldId: ID!, $number: Float) {
updateProjectV2ItemFieldValue(
input: {
projectId: $projectId
itemId: $itemId
fieldId: $fieldId
value: { number: $number }
}
) {
projectV2Item { id }
}
}
const updateItemNumberMutation: string...