update_project_v2
Modify GitHub project V2 details using GraphQL API, including title, description, and project status, by providing the project ID and desired updates.
Instructions
Update a GitHub project V2 using GraphQL API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
closed | No | Whether to close the project | |
description | No | New description for the project | |
projectId | Yes | The node ID of the project | |
title | No | New title for the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"closed": {
"description": "Whether to close the project",
"type": "boolean"
},
"description": {
"description": "New description for the project",
"type": "string"
},
"projectId": {
"description": "The node ID of the project",
"type": "string"
},
"title": {
"description": "New title for the project",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}