OBJECT

StatusContext

Represents an individual commit status context

link GraphQL Schema definition

  • type StatusContext implements Node {
  • # This commit this status context is attached to.
  • commit: Commit
  • # The name of this status context.
  • context: String!
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # The author of this status context.
  • creator: Author
  • # The description for this status context.
  • description: String
  • id: ID!
  • # The state of this status context.
  • state: StatusState!
  • # The URL for this status context.
  • targetURL: String
  • }