OBJECT

Milestone

Represents a Milestone object on a given repository.

link GraphQL Schema definition

  • type Milestone implements Node {
  • # Identifies the number of issues currently closed in this milestone.
  • closedIssueCount: Int!
  • # Identifies the creator of the milestone.
  • createdBy: User!
  • # Identifies the description of the milestone.
  • description: String
  • # Identifies the due date of the milestone.
  • dueOn: DateTime
  • id: ID!
  • # Identifies the number of the milestone.
  • number: Int!
  • # Identifies the number of issues currently open in this milestone.
  • openIssueCount: Int!
  • # The HTTP path for this milestone
  • path: URI!
  • # The repository associated with this milestone.
  • repository: Repository!
  • # Identifies the state of the milestone.
  • state: MilestoneState!
  • # Identifies the title of the milestone.
  • title: String!
  • # The HTTP url for this milestone
  • url: URI!
  • }