OBJECT

DeployedEvent

Represents a 'deployed' event on a given issue or pull request.

link GraphQL Schema definition

  • type DeployedEvent implements Node, IssueEvent {
  • # Identifies the actor (user) associated with the event.
  • actor: User!
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # The deployment associated with the 'deployed' event.
  • deployment: Deployment!
  • id: ID!
  • # Identifies the issue associated with the event.
  • issue: Issue!
  • # The ref associated with the 'deployed' event.
  • ref: Ref
  • # Identifies the repository associated with the event.
  • repository: Repository!
  • # Identifies the event type associated with the event.
  • type: IssueEventType!
  • }