list_project_v2_items
Fetch and display items from a GitHub project V2 using GraphQL API by specifying the project ID, item count, and pagination cursor for efficient navigation.
Instructions
List items in a GitHub project V2 using GraphQL API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Cursor for pagination | |
first | No | Number of items to fetch (max 100) | |
projectId | Yes | The node ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"description": "Cursor for pagination",
"type": "string"
},
"first": {
"description": "Number of items to fetch (max 100)",
"type": "number"
},
"projectId": {
"description": "The node ID of the project",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}