aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-02 16:48:07 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-02 16:48:07 +0200
commit9488467c754230288934dde4a49b9046e658986c (patch)
tree89a3b0c85ec4171f3b2c388d3786a3e92e92c938 /graphql/schema.graphql
parentae1ed6c11f3ae5675c80f377dd7f3996b3d621d0 (diff)
downloadgit-bug-9488467c754230288934dde4a49b9046e658986c.tar.gz
termui: show the last edit in a dedicated column
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r--graphql/schema.graphql7
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.