get_field_value
Extract specific field values from GitHub project items, supporting all field types including text, numbers, dates, and custom selections. Facilitates data retrieval for project management and tracking.
Instructions
Get a field value for a GitHub project item. Supports reading all field types: TEXT, NUMBER, DATE, SINGLE_SELECT, ITERATION, MILESTONE, ASSIGNEES, LABELS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldId | Yes | ||
itemId | Yes | ||
projectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fieldId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"itemId",
"fieldId"
],
"type": "object"
}