diff options
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 970166cb..410ecde9 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -133,11 +133,12 @@ type BugEdge { type Bug { id: String! humanId: String! - title: String! status: Status! - - # A list of labels associated with the repository. + title: String! labels: [Label!]! + author: Person! + createdAt: Time! + lastEdit: Time! comments( # Returns the elements in the list that come after the specified cursor. |