INTERFACE

IssueEvent

Represents an issue event.

link GraphQL Schema definition

  • interface IssueEvent {
  • # Identifies the actor (user) associated with the event.
  • actor: User!
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # Identifies the issue associated with the event.
  • issue: Issue!
  • # Identifies the repository associated with the event.
  • repository: Repository!
  • # Identifies the event type associated with the event.
  • type: IssueEventType!
  • }

link Require by