From 3dd41e5da17c41d24fe295819b3717e5ae47794d Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Sun, 22 Jul 2018 00:17:22 +0200 Subject: Add title field to bugs in graphql schema --- graphql/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/graphql/types.go b/graphql/types.go index a320ca39..f1161687 100644 --- a/graphql/types.go +++ b/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), }, -- cgit