update_project_v2_item_field
Modify field values for items in GitHub Projects V2 using the GraphQL API. Specify project, item, and field IDs to update and assign new values effectively.
Instructions
Update a field value for an item in a GitHub project V2 using GraphQL API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldId | Yes | The node ID of the field | |
itemId | Yes | The node ID of the item | |
projectId | Yes | The node ID of the project | |
value | No | The new value for the field |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fieldId": {
"description": "The node ID of the field",
"type": "string"
},
"itemId": {
"description": "The node ID of the item",
"type": "string"
},
"projectId": {
"description": "The node ID of the project",
"type": "string"
},
"value": {
"description": "The new value for the field"
}
},
"required": [
"projectId",
"itemId",
"fieldId"
],
"type": "object"
}