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.
- Int! :
- # Identifies the creator of the milestone.
- User! :
- # Identifies the description of the milestone.
- String :
- # Identifies the due date of the milestone.
- DateTime :
- ID! :
- # Identifies the number of the milestone.
- Int! :
- # Identifies the number of issues currently open in this milestone.
- Int! :
- # The HTTP path for this milestone
- URI! :
- # The repository associated with this milestone.
- Repository! :
- # Identifies the state of the milestone.
- MilestoneState! :
- # Identifies the title of the milestone.
- String! :
- # The HTTP url for this milestone
- URI! :
- }