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