Add title field to bugs in graphql schema

Quentin Gliech created

Change summary

graphql/types.go | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

graphql/types.go 🔗

@@ -43,6 +43,9 @@ var bugType = graphql.NewObject(graphql.ObjectConfig{
 		"status": &graphql.Field{
 			Type: graphql.String,
 		},
+		"title": &graphql.Field{
+			Type: graphql.String,
+		},
 		"comments": &graphql.Field{
 			Type: graphql.NewList(commentType),
 		},