Skip to main content

IssuesNode

Represents a GitHub issue with its metadata and comments.

Attributes

AttributeTypeDescription
numberintThe unique identifier of the issue within the repository, used for referencing and linking.
author`AuthorNone` = None
titlestrThe descriptive headline of the issue providing a summary of the task or bug.
createdAtdatetimeThe timestamp indicating exactly when the issue was first opened in the repository.
statestrThe 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

NameTypeDescription
numberintThe unique identifier number of the GitHub issue.
author`AuthorNone` = None
titlestrThe title of the GitHub issue.
createdAtdatetimeThe timestamp when the issue was created.
statestrThe 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

NameTypeDescription
numberintThe unique identification number of the issue within the repository
author`AuthorNone` = None
titlestrThe headline or summary text of the issue
createdAtdatetimeThe timestamp indicating when the issue was originally opened
statestrThe 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