IssuesNode
Represents a GitHub issue with its metadata and comments.
Attributes
| Attribute | Type | Description |
|---|---|---|
| number | int | The unique identifier of the issue within the repository, used for referencing and linking. |
| author | `Author | None` = None |
| title | str | The descriptive headline of the issue providing a summary of the task or bug. |
| createdAt | datetime | The timestamp indicating exactly when the issue was first opened in the repository. |
| state | str | The current status of the issue, typically indicating whether it is open or closed. |
| comments | [Comments](comments.md?sid=actions_people_people_comments) | A collection of discussion entries and metadata associated with the issue thread. |
Constructor
Signature
def IssuesNode(
number: int,
author: Author | None = None,
title: str,
createdAt: datetime,
state: str,
comments: [Comments](comments.md?sid=actions_people_people_comments)
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| number | int | The unique identifier number of the GitHub issue. |
| author | `Author | None` = None |
| title | str | The title of the GitHub issue. |
| createdAt | datetime | The timestamp when the issue was created. |
| state | str | The current state of the issue (e.g., open, closed). |
| comments | [Comments](comments.md?sid=actions_people_people_comments) | A collection of comments associated with the issue. |
Signature
def IssuesNode(
number: int,
author: Author | None = None,
title: str,
createdAt: datetime,
state: str,
comments: [Comments](comments.md?sid=actions_people_people_comments)
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| number | int | The unique identification number of the issue within the repository |
| author | `Author | None` = None |
| title | str | The headline or summary text of the issue |
| createdAt | datetime | The timestamp indicating when the issue was originally opened |
| state | str | The current status of the issue, such as 'open' or 'closed' |
| comments | [Comments](comments.md?sid=actions_people_people_comments) | A collection of discussion entries associated with the issue |