Variable updateItemTextMutation

Source
Expand description

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

remarks

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

example
mutation updateItemField($projectId: ID!, $itemId: ID!, $fieldId: ID!, $text: String) {
updateProjectV2ItemFieldValue(
input: {
projectId: $projectId
itemId: $itemId
fieldId: $fieldId
value: { text: $text }
}
) {
projectV2Item { id }
}
}
const updateItemTextMutation: string...