OBJECT

MergedEvent

Represents a 'merged' event on a given pull request.

link GraphQL Schema definition

  • type MergedEvent implements Node, IssueEvent {
  • # Identifies the actor (user) associated with the event.
  • actor: User!
  • # Identifies the commit associated with the `merge` event.
  • commit: Commit!
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • id: ID!
  • # Identifies the issue associated with the event.
  • issue: Issue!
  • # Identifies the Ref associated with the `merge` event.
  • mergeRef: Ref
  • # Identifies the name of the Ref associated with the `merge` event.
  • mergeRefName: String!
  • # Identifies the repository associated with the event.
  • repository: Repository!
  • # Identifies the event type associated with the event.
  • type: IssueEventType!
  • }