OBJECT

HeadRefForcePushedEvent

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

link GraphQL Schema definition

  • type HeadRefForcePushedEvent implements Node, IssueEvent {
  • # Identifies the actor (user) associated with the event.
  • actor: User!
  • # Identifies the after commit SHA for the 'head_ref_force_pushed' event.
  • afterCommit: Commit!
  • # Identifies the before commit SHA for the 'head_ref_force_pushed' event.
  • beforeCommit: 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 fully qualified ref name for the 'head_ref_force_pushed' event.
  • ref: Ref
  • # Identifies the repository associated with the event.
  • repository: Repository!
  • # Identifies the event type associated with the event.
  • type: IssueEventType!
  • }