OBJECT

StatusContext

Represents an individual commit status context

link GraphQL Schema definition

1type StatusContext implements Node {
2
3# This commit this status context is attached to.
4commit: Commit
5
6# The name of this status context.
7context: String!
8
9# Identifies the date and time when the object was created.
10createdAt: DateTime!
11
12# The author of this status context.
13creator: Author
14
15# The description for this status context.
16description: String
17
18id: ID!
19
20# The state of this status context.
21state: StatusState!
22
23# The URL for this status context.
24targetURL: String
25
26}