INTERFACE
Issueish
Shared features of Issues and Pull Requests.
link GraphQL Schema definition
- interface Issueish {
- # A list of Users assigned to the Issue or Pull Request.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- Int, : String, : Int, : String): UserConnection! ( :
- # The author of the issue or pull request.
- Author :
- # Identifies the body of the issue.
- String! :
- # Identifies the body of the issue rendered to HTML.
- HTML! :
- ID! :
- # A list of labels associated with the Issue or Pull Request.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- Int, : String, : Int, : String): LabelConnection ( :
- # Identifies the issue number.
- Int! :
- # Identifies the repository associated with the issue.
- Repository! :
- # Identifies the issue title.
- String! :
- }