OBJECT

ReviewDismissedEvent

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

link GraphQL Schema definition

  • type ReviewDismissedEvent 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!
  • id: ID!
  • # Identifies the issue associated with the event.
  • issue: Issue!
  • # Identifies the message associated with the 'review_dismissed' event.
  • message: String!
  • # Identifies the previous state of the review with the 'review_dismissed' event.
  • previousReviewState: PullRequestReviewState!
  • # Identifies the repository associated with the event.
  • repository: Repository!
  • # Identifies the review associated with the 'review_dismissed' event.
  • review: PullRequestReview!
  • # Identifies the event type associated with the event.
  • type: IssueEventType!
  • }