OBJECT
Status
Represents a commit status.
link GraphQL Schema definition
- type Status implements Node {
- # The commit this status is attached to.
- : Commit
- # Looks up an individual status context by context name.
- #
- # Arguments
- # name: The context name.
- (: String!): StatusContext
- # The individual status contexts for this commit.
- : [StatusContext!]!
- : ID!
- # The combined commit status.
- : StatusState!
- }