OBJECT

BlameRange

Represents a range of information from a Git blame.

link GraphQL Schema definition

  • type BlameRange {
  • # Identifies the recency of the change, from 1 (new) to 10 (old). This is
  • # calculated as a 2-quantile and determines the length of distance between the
  • # median age of all the changes in the file and the recency of the current range's
  • # change.
  • age: Int!
  • # Identifies the line author
  • commit: Commit!
  • # The ending line for the range
  • endingLine: Int!
  • # The starting line for the range
  • startingLine: Int!
  • }