OBJECT

ReviewRequest

A request for a user to review a pull request.

link GraphQL Schema definition

  • type ReviewRequest implements Node {
  • # Identifies the primary key from the database.
  • databaseId: Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." )
  • id: ID!
  • # Identifies the pull request associated with this review request.
  • pullRequest: PullRequest!
  • # Identifies the author associated with this review request.
  • reviewer: User!
  • }