diff --git a/api/graphql/connections/gen_label.go b/api/graphql/connections/connection.go
similarity index 50%
rename from api/graphql/connections/gen_label.go
rename to api/graphql/connections/connection.go
index 39b1c536bd4b39f25ba1a892db23116dc5be2175..f42280c218abb20e385a2e9f979756d77800ab88 100644
--- a/api/graphql/connections/gen_label.go
+++ b/api/graphql/connections/connection.go
@@ -1,43 +1,53 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
 package connections
 
 import (
 	"fmt"
 
 	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/bug"
 )
 
-// BugLabelEdgeMaker define a function that take a bug.Label and an offset and
-// create an Edge.
-type LabelEdgeMaker func(value bug.Label, offset int) Edge
-
-// LabelConMaker define a function that create a models.LabelConnection
-type LabelConMaker func(
-	edges []*models.LabelEdge,
-	nodes []bug.Label,
-	info *models.PageInfo,
-	totalCount int) (*models.LabelConnection, error)
-
-// LabelCon will paginate a source according to the input of a relay connection
-func LabelCon(source []bug.Label, edgeMaker LabelEdgeMaker, conMaker LabelConMaker, input models.ConnectionInput) (*models.LabelConnection, error) {
-	var nodes []bug.Label
-	var edges []*models.LabelEdge
+type Input struct {
+	After  *string
+	Before *string
+	First  *int
+	Last   *int
+}
+
+// Result is the result of a GraphQL connection pagination
+type Result[NodeT any] struct {
+	// A list of edges.
+	Edges []*Edge[NodeT] `json:"edges"`
+	Nodes []NodeT        `json:"nodes"`
+	// Information to aid in pagination.
+	PageInfo *models.PageInfo `json:"pageInfo"`
+	// Identifies the total count of items in the connection.
+	TotalCount int `json:"totalCount"`
+}
+
+// Edge hold a GraphQL connection edge
+type Edge[NodeT any] struct {
+	Cursor string `json:"cursor"`
+	Node   NodeT  `json:"node"`
+}
+
+func newEdge[NodeT any](node NodeT, offset int) *Edge[NodeT] {
+	return &Edge[NodeT]{Cursor: OffsetToCursor(offset), Node: node}
+}
+
+// Paginate will paginate a source according to the input of a relay connection
+func Paginate[NodeT any](source []NodeT, input Input) (*Result[NodeT], error) {
+	var nodes []NodeT
+	var edges []*Edge[NodeT]
 	var cursors []string
 	var pageInfo = &models.PageInfo{}
 	var totalCount = len(source)
 
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
 	offset := 0
 
 	if input.After != nil {
 		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
+			edge := newEdge(value, offset)
+			if edge.Cursor == *input.After {
 				// remove all previous element including the "after" one
 				source = source[i+1:]
 				offset = i + 1
@@ -49,35 +59,31 @@ func LabelCon(source []bug.Label, edgeMaker LabelEdgeMaker, conMaker LabelConMak
 
 	if input.Before != nil {
 		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
+			edge := newEdge(value, i+offset)
+			if edge.Cursor == *input.Before {
 				// remove all after element including the "before" one
 				pageInfo.HasNextPage = true
 				break
 			}
-
-			e := edge.(models.LabelEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
+			edges = append(edges, edge)
+			cursors = append(cursors, edge.Cursor)
 			nodes = append(nodes, value)
 		}
 	} else {
-		edges = make([]*models.LabelEdge, len(source))
+		edges = make([]*Edge[NodeT], len(source))
 		cursors = make([]string, len(source))
 		nodes = source
 
 		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(models.LabelEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
+			edge := newEdge(value, i+offset)
+			edges[i] = edge
+			cursors[i] = edge.Cursor
 		}
 	}
 
 	if input.First != nil {
 		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
+			return nil, fmt.Errorf("first less than zero")
 		}
 
 		if len(edges) > *input.First {
@@ -91,7 +97,7 @@ func LabelCon(source []bug.Label, edgeMaker LabelEdgeMaker, conMaker LabelConMak
 
 	if input.Last != nil {
 		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
+			return nil, fmt.Errorf("last less than zero")
 		}
 
 		if len(edges) > *input.Last {
@@ -109,5 +115,10 @@ func LabelCon(source []bug.Label, edgeMaker LabelEdgeMaker, conMaker LabelConMak
 		pageInfo.EndCursor = cursors[len(cursors)-1]
 	}
 
-	return conMaker(edges, nodes, pageInfo, totalCount)
+	return &Result[NodeT]{
+		Edges:      edges,
+		Nodes:      nodes,
+		PageInfo:   pageInfo,
+		TotalCount: totalCount,
+	}, nil
 }
diff --git a/api/graphql/connections/connection_template.go b/api/graphql/connections/connection_template.go
deleted file mode 100644
index 935a0a77ffdbc757bd26608ee2e1a655c4c1283f..0000000000000000000000000000000000000000
--- a/api/graphql/connections/connection_template.go
+++ /dev/null
@@ -1,122 +0,0 @@
-package connections
-
-import (
-	"fmt"
-
-	"github.com/cheekybits/genny/generic"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-)
-
-// Name define the name of the connection
-type Name generic.Type
-
-// NodeType define the node type handled by this relay connection
-type NodeType generic.Type
-
-// EdgeType define the edge type handled by this relay connection
-type EdgeType generic.Type
-
-// ConnectionType define the connection type handled by this relay connection
-type ConnectionType generic.Type
-
-// NodeTypeEdgeMaker define a function that take a NodeType and an offset and
-// create an Edge.
-type NameEdgeMaker func(value NodeType, offset int) Edge
-
-// NameConMaker define a function that create a ConnectionType
-type NameConMaker func(
-	edges []*EdgeType,
-	nodes []NodeType,
-	info *models.PageInfo,
-	totalCount int) (*ConnectionType, error)
-
-// NameCon will paginate a source according to the input of a relay connection
-func NameCon(source []NodeType, edgeMaker NameEdgeMaker, conMaker NameConMaker, input models.ConnectionInput) (*ConnectionType, error) {
-	var nodes []NodeType
-	var edges []*EdgeType
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(EdgeType)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*EdgeType, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(EdgeType)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/connections.go b/api/graphql/connections/connections.go
deleted file mode 100644
index 0083f8b245f566c0b4bf8bb54b5bc093893f143e..0000000000000000000000000000000000000000
--- a/api/graphql/connections/connections.go
+++ /dev/null
@@ -1,45 +0,0 @@
-//go:generate genny -in=connection_template.go -out=gen_lazy_bug.go gen "Name=LazyBug NodeType=entity.Id EdgeType=LazyBugEdge ConnectionType=models.BugConnection"
-//go:generate genny -in=connection_template.go -out=gen_lazy_identity.go gen "Name=LazyIdentity NodeType=entity.Id EdgeType=LazyIdentityEdge ConnectionType=models.IdentityConnection"
-//go:generate genny -in=connection_template.go -out=gen_identity.go gen "Name=Identity NodeType=models.IdentityWrapper EdgeType=models.IdentityEdge ConnectionType=models.IdentityConnection"
-//go:generate genny -in=connection_template.go -out=gen_operation.go gen "Name=Operation NodeType=bug.Operation EdgeType=models.OperationEdge ConnectionType=models.OperationConnection"
-//go:generate genny -in=connection_template.go -out=gen_comment.go gen "Name=Comment NodeType=bug.Comment EdgeType=models.CommentEdge ConnectionType=models.CommentConnection"
-//go:generate genny -in=connection_template.go -out=gen_timeline.go gen "Name=TimelineItem NodeType=bug.TimelineItem EdgeType=models.TimelineItemEdge ConnectionType=models.TimelineItemConnection"
-//go:generate genny -in=connection_template.go -out=gen_label.go gen "Name=Label NodeType=bug.Label EdgeType=models.LabelEdge ConnectionType=models.LabelConnection"
-
-// Package connections implement a generic GraphQL relay connection
-package connections
-
-import (
-	"encoding/base64"
-	"fmt"
-	"strconv"
-	"strings"
-)
-
-const cursorPrefix = "cursor:"
-
-// Edge define the contract for an edge in a relay connection
-type Edge interface {
-	GetCursor() string
-}
-
-// OffsetToCursor create the cursor string from an offset
-func OffsetToCursor(offset int) string {
-	str := fmt.Sprintf("%v%v", cursorPrefix, offset)
-	return base64.StdEncoding.EncodeToString([]byte(str))
-}
-
-// CursorToOffset re-derives the offset from the cursor string.
-func CursorToOffset(cursor string) (int, error) {
-	str := ""
-	b, err := base64.StdEncoding.DecodeString(cursor)
-	if err == nil {
-		str = string(b)
-	}
-	str = strings.Replace(str, cursorPrefix, "", -1)
-	offset, err := strconv.Atoi(str)
-	if err != nil {
-		return 0, fmt.Errorf("Invalid cursor")
-	}
-	return offset, nil
-}
diff --git a/api/graphql/connections/cursor.go b/api/graphql/connections/cursor.go
new file mode 100644
index 0000000000000000000000000000000000000000..400f02312e38a840a9308a09ac24bc3834a06c8a
--- /dev/null
+++ b/api/graphql/connections/cursor.go
@@ -0,0 +1,40 @@
+// go:generate genny -in=connection_template.go -out=gen_lazy_bug.go gen "Name=LazyBug NodeType=entity.Id EdgeType=LazyBugEdge ConnectionType=models.BugConnection"
+// go:generate genny -in=connection_template.go -out=gen_lazy_identity.go gen "Name=LazyIdentity NodeType=entity.Id EdgeType=LazyIdentityEdge ConnectionType=models.IdentityConnection"
+// go:generate genny -in=connection_template.go -out=gen_identity.go gen "Name=Identity NodeType=models.IdentityWrapper EdgeType=models.IdentityEdge ConnectionType=models.IdentityConnection"
+// go:generate genny -in=connection_template.go -out=gen_operation.go gen "Name=Operation NodeType=dag.Operation EdgeType=models.OperationEdge ConnectionType=models.OperationConnection"
+// go:generate genny -in=connection_template.go -out=gen_comment.go gen "Name=Comment NodeType=bug.Comment EdgeType=models.CommentEdge ConnectionType=models.CommentConnection"
+// go:generate genny -in=connection_template.go -out=gen_timeline.go gen "Name=TimelineItem NodeType=bug.TimelineItem EdgeType=models.TimelineItemEdge ConnectionType=models.TimelineItemConnection"
+// go:generate genny -in=connection_template.go -out=gen_label.go gen "Name=Label NodeType=bug.Label EdgeType=models.LabelEdge ConnectionType=models.LabelConnection"
+
+// Package connections implement a generic GraphQL relay connection
+package connections
+
+import (
+	"encoding/base64"
+	"fmt"
+	"strconv"
+	"strings"
+)
+
+const cursorPrefix = "cursor:"
+
+// OffsetToCursor create the cursor string from an offset
+func OffsetToCursor(offset int) string {
+	str := fmt.Sprintf("%v%v", cursorPrefix, offset)
+	return base64.StdEncoding.EncodeToString([]byte(str))
+}
+
+// CursorToOffset re-derives the offset from the cursor string.
+func CursorToOffset(cursor string) (int, error) {
+	str := ""
+	b, err := base64.StdEncoding.DecodeString(cursor)
+	if err == nil {
+		str = string(b)
+	}
+	str = strings.Replace(str, cursorPrefix, "", -1)
+	offset, err := strconv.Atoi(str)
+	if err != nil {
+		return 0, fmt.Errorf("Invalid cursor")
+	}
+	return offset, nil
+}
diff --git a/api/graphql/connections/edges.go b/api/graphql/connections/edges.go
deleted file mode 100644
index 4e37fcd9109afba9d512a827fdc4846c51a0b468..0000000000000000000000000000000000000000
--- a/api/graphql/connections/edges.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package connections
-
-import "github.com/MichaelMure/git-bug/entity"
-
-// LazyBugEdge is a special relay edge used to implement a lazy loading connection
-type LazyBugEdge struct {
-	Id     entity.Id
-	Cursor string
-}
-
-// GetCursor return the cursor of a LazyBugEdge
-func (lbe LazyBugEdge) GetCursor() string {
-	return lbe.Cursor
-}
-
-// LazyIdentityEdge is a special relay edge used to implement a lazy loading connection
-type LazyIdentityEdge struct {
-	Id     entity.Id
-	Cursor string
-}
-
-// GetCursor return the cursor of a LazyIdentityEdge
-func (lbe LazyIdentityEdge) GetCursor() string {
-	return lbe.Cursor
-}
diff --git a/api/graphql/connections/gen_comment.go b/api/graphql/connections/gen_comment.go
deleted file mode 100644
index bae740304a7e13f43f1b5c1e3be48ea7121e3fc3..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_comment.go
+++ /dev/null
@@ -1,113 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/bug"
-)
-
-// BugCommentEdgeMaker define a function that take a bug.Comment and an offset and
-// create an Edge.
-type CommentEdgeMaker func(value bug.Comment, offset int) Edge
-
-// CommentConMaker define a function that create a models.CommentConnection
-type CommentConMaker func(
-	edges []*models.CommentEdge,
-	nodes []bug.Comment,
-	info *models.PageInfo,
-	totalCount int) (*models.CommentConnection, error)
-
-// CommentCon will paginate a source according to the input of a relay connection
-func CommentCon(source []bug.Comment, edgeMaker CommentEdgeMaker, conMaker CommentConMaker, input models.ConnectionInput) (*models.CommentConnection, error) {
-	var nodes []bug.Comment
-	var edges []*models.CommentEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(models.CommentEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*models.CommentEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(models.CommentEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/gen_identity.go b/api/graphql/connections/gen_identity.go
deleted file mode 100644
index 2138b17ec02794b2d7f8314315c225c119b7d06a..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_identity.go
+++ /dev/null
@@ -1,112 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-)
-
-// ModelsIdentityWrapperEdgeMaker define a function that take a models.IdentityWrapper and an offset and
-// create an Edge.
-type IdentityEdgeMaker func(value models.IdentityWrapper, offset int) Edge
-
-// IdentityConMaker define a function that create a models.IdentityConnection
-type IdentityConMaker func(
-	edges []*models.IdentityEdge,
-	nodes []models.IdentityWrapper,
-	info *models.PageInfo,
-	totalCount int) (*models.IdentityConnection, error)
-
-// IdentityCon will paginate a source according to the input of a relay connection
-func IdentityCon(source []models.IdentityWrapper, edgeMaker IdentityEdgeMaker, conMaker IdentityConMaker, input models.ConnectionInput) (*models.IdentityConnection, error) {
-	var nodes []models.IdentityWrapper
-	var edges []*models.IdentityEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(models.IdentityEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*models.IdentityEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(models.IdentityEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/gen_lazy_bug.go b/api/graphql/connections/gen_lazy_bug.go
deleted file mode 100644
index 1dc4692ebd53fcf32d7823069ec23bf23d9e86d3..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_lazy_bug.go
+++ /dev/null
@@ -1,113 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/entity"
-)
-
-// EntityIdEdgeMaker define a function that take a entity.Id and an offset and
-// create an Edge.
-type LazyBugEdgeMaker func(value entity.Id, offset int) Edge
-
-// LazyBugConMaker define a function that create a models.BugConnection
-type LazyBugConMaker func(
-	edges []*LazyBugEdge,
-	nodes []entity.Id,
-	info *models.PageInfo,
-	totalCount int) (*models.BugConnection, error)
-
-// LazyBugCon will paginate a source according to the input of a relay connection
-func LazyBugCon(source []entity.Id, edgeMaker LazyBugEdgeMaker, conMaker LazyBugConMaker, input models.ConnectionInput) (*models.BugConnection, error) {
-	var nodes []entity.Id
-	var edges []*LazyBugEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(LazyBugEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*LazyBugEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(LazyBugEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/gen_lazy_identity.go b/api/graphql/connections/gen_lazy_identity.go
deleted file mode 100644
index 4996e2199754881e11e90b1e088b988ef48d0981..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_lazy_identity.go
+++ /dev/null
@@ -1,113 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/entity"
-)
-
-// EntityIdEdgeMaker define a function that take a entity.Id and an offset and
-// create an Edge.
-type LazyIdentityEdgeMaker func(value entity.Id, offset int) Edge
-
-// LazyIdentityConMaker define a function that create a models.IdentityConnection
-type LazyIdentityConMaker func(
-	edges []*LazyIdentityEdge,
-	nodes []entity.Id,
-	info *models.PageInfo,
-	totalCount int) (*models.IdentityConnection, error)
-
-// LazyIdentityCon will paginate a source according to the input of a relay connection
-func LazyIdentityCon(source []entity.Id, edgeMaker LazyIdentityEdgeMaker, conMaker LazyIdentityConMaker, input models.ConnectionInput) (*models.IdentityConnection, error) {
-	var nodes []entity.Id
-	var edges []*LazyIdentityEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(LazyIdentityEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*LazyIdentityEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(LazyIdentityEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/gen_operation.go b/api/graphql/connections/gen_operation.go
deleted file mode 100644
index 4bd84895950eb063e8e29d575b778713f2405a59..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_operation.go
+++ /dev/null
@@ -1,113 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/bug"
-)
-
-// BugOperationEdgeMaker define a function that take a bug.Operation and an offset and
-// create an Edge.
-type OperationEdgeMaker func(value bug.Operation, offset int) Edge
-
-// OperationConMaker define a function that create a models.OperationConnection
-type OperationConMaker func(
-	edges []*models.OperationEdge,
-	nodes []bug.Operation,
-	info *models.PageInfo,
-	totalCount int) (*models.OperationConnection, error)
-
-// OperationCon will paginate a source according to the input of a relay connection
-func OperationCon(source []bug.Operation, edgeMaker OperationEdgeMaker, conMaker OperationConMaker, input models.ConnectionInput) (*models.OperationConnection, error) {
-	var nodes []bug.Operation
-	var edges []*models.OperationEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(models.OperationEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*models.OperationEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(models.OperationEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/connections/gen_timeline.go b/api/graphql/connections/gen_timeline.go
deleted file mode 100644
index 952d095ce01102c73f53c83d732d7b4a8c5d60d9..0000000000000000000000000000000000000000
--- a/api/graphql/connections/gen_timeline.go
+++ /dev/null
@@ -1,113 +0,0 @@
-// This file was automatically generated by genny.
-// Any changes will be lost if this file is regenerated.
-// see https://github.com/cheekybits/genny
-
-package connections
-
-import (
-	"fmt"
-
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/bug"
-)
-
-// BugTimelineItemEdgeMaker define a function that take a bug.TimelineItem and an offset and
-// create an Edge.
-type TimelineItemEdgeMaker func(value bug.TimelineItem, offset int) Edge
-
-// TimelineItemConMaker define a function that create a models.TimelineItemConnection
-type TimelineItemConMaker func(
-	edges []*models.TimelineItemEdge,
-	nodes []bug.TimelineItem,
-	info *models.PageInfo,
-	totalCount int) (*models.TimelineItemConnection, error)
-
-// TimelineItemCon will paginate a source according to the input of a relay connection
-func TimelineItemCon(source []bug.TimelineItem, edgeMaker TimelineItemEdgeMaker, conMaker TimelineItemConMaker, input models.ConnectionInput) (*models.TimelineItemConnection, error) {
-	var nodes []bug.TimelineItem
-	var edges []*models.TimelineItemEdge
-	var cursors []string
-	var pageInfo = &models.PageInfo{}
-	var totalCount = len(source)
-
-	emptyCon, _ := conMaker(edges, nodes, pageInfo, 0)
-
-	offset := 0
-
-	if input.After != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i)
-			if edge.GetCursor() == *input.After {
-				// remove all previous element including the "after" one
-				source = source[i+1:]
-				offset = i + 1
-				pageInfo.HasPreviousPage = true
-				break
-			}
-		}
-	}
-
-	if input.Before != nil {
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-
-			if edge.GetCursor() == *input.Before {
-				// remove all after element including the "before" one
-				pageInfo.HasNextPage = true
-				break
-			}
-
-			e := edge.(models.TimelineItemEdge)
-			edges = append(edges, &e)
-			cursors = append(cursors, edge.GetCursor())
-			nodes = append(nodes, value)
-		}
-	} else {
-		edges = make([]*models.TimelineItemEdge, len(source))
-		cursors = make([]string, len(source))
-		nodes = source
-
-		for i, value := range source {
-			edge := edgeMaker(value, i+offset)
-			e := edge.(models.TimelineItemEdge)
-			edges[i] = &e
-			cursors[i] = edge.GetCursor()
-		}
-	}
-
-	if input.First != nil {
-		if *input.First < 0 {
-			return emptyCon, fmt.Errorf("first less than zero")
-		}
-
-		if len(edges) > *input.First {
-			// Slice result to be of length first by removing edges from the end
-			edges = edges[:*input.First]
-			cursors = cursors[:*input.First]
-			nodes = nodes[:*input.First]
-			pageInfo.HasNextPage = true
-		}
-	}
-
-	if input.Last != nil {
-		if *input.Last < 0 {
-			return emptyCon, fmt.Errorf("last less than zero")
-		}
-
-		if len(edges) > *input.Last {
-			// Slice result to be of length last by removing edges from the start
-			edges = edges[len(edges)-*input.Last:]
-			cursors = cursors[len(cursors)-*input.Last:]
-			nodes = nodes[len(nodes)-*input.Last:]
-			pageInfo.HasPreviousPage = true
-		}
-	}
-
-	// Fill up pageInfo cursors
-	if len(cursors) > 0 {
-		pageInfo.StartCursor = cursors[0]
-		pageInfo.EndCursor = cursors[len(cursors)-1]
-	}
-
-	return conMaker(edges, nodes, pageInfo, totalCount)
-}
diff --git a/api/graphql/gqlgen.yml b/api/graphql/gqlgen.yml
index b8019076befb240ca610c8642560c4c3fbc6d8a3..fd195f5b00300c2fbc17ec95cd2eda5a2256f0ef 100644
--- a/api/graphql/gqlgen.yml
+++ b/api/graphql/gqlgen.yml
@@ -28,6 +28,8 @@ models:
     model: github.com/MichaelMure/git-bug/bug.Comment
   Identity:
     model: github.com/MichaelMure/git-bug/api/graphql/models.IdentityWrapper
+  IdentityConnection:
+    model: github.com/MichaelMure/git-bug/api/graphql/connections.Result
   Label:
     model: github.com/MichaelMure/git-bug/bug.Label
   Hash:
diff --git a/api/graphql/graph/gen_graph.go b/api/graphql/graph/gen_graph.go
index 468635f67256ba444d8c6a6e7a16cc263b67a9dc..11bab17350eb12b76b5dc1d129deb92932a946e6 100644
--- a/api/graphql/graph/gen_graph.go
+++ b/api/graphql/graph/gen_graph.go
@@ -3,17135 +3,20834 @@
 package graph
 
 import (
-	"bytes"
-	"context"
-	"errors"
-	"fmt"
-	"image/color"
-	"strconv"
-	"sync"
-	"sync/atomic"
-	"time"
-
-	"github.com/99designs/gqlgen/graphql"
-	"github.com/99designs/gqlgen/graphql/introspection"
-	"github.com/MichaelMure/git-bug/api/graphql/models"
-	"github.com/MichaelMure/git-bug/bug"
-	"github.com/MichaelMure/git-bug/repository"
-	gqlparser "github.com/vektah/gqlparser/v2"
-	"github.com/vektah/gqlparser/v2/ast"
-)
+"context"
+"fmt"
+"io"
+"strconv"
+"time"
+"sync"
+"sync/atomic"
+"errors"
+"bytes"
+"embed"
+gqlparser "github.com/vektah/gqlparser/v2"
+"github.com/vektah/gqlparser/v2/ast"
+"github.com/99designs/gqlgen/graphql"
+"github.com/99designs/gqlgen/graphql/introspection"
+"github.com/MichaelMure/git-bug/api/graphql/models"
+"github.com/MichaelMure/git-bug/bug"
+"github.com/MichaelMure/git-bug/api/graphql/connections"
+"image/color"
+"github.com/MichaelMure/git-bug/repository"
+"github.com/MichaelMure/git-bug/entity/dag")
 
 // region    ************************** generated!.gotpl **************************
 
-// NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.
-func NewExecutableSchema(cfg Config) graphql.ExecutableSchema {
-	return &executableSchema{
-		resolvers:  cfg.Resolvers,
-		directives: cfg.Directives,
-		complexity: cfg.Complexity,
-	}
-}
-
-type Config struct {
-	Resolvers  ResolverRoot
-	Directives DirectiveRoot
-	Complexity ComplexityRoot
-}
-
-type ResolverRoot interface {
-	AddCommentOperation() AddCommentOperationResolver
-	AddCommentTimelineItem() AddCommentTimelineItemResolver
-	Bug() BugResolver
-	Color() ColorResolver
-	Comment() CommentResolver
-	CommentHistoryStep() CommentHistoryStepResolver
-	CreateOperation() CreateOperationResolver
-	CreateTimelineItem() CreateTimelineItemResolver
-	EditCommentOperation() EditCommentOperationResolver
-	Identity() IdentityResolver
-	Label() LabelResolver
-	LabelChangeOperation() LabelChangeOperationResolver
-	LabelChangeResult() LabelChangeResultResolver
-	LabelChangeTimelineItem() LabelChangeTimelineItemResolver
-	Mutation() MutationResolver
-	Query() QueryResolver
-	Repository() RepositoryResolver
-	SetStatusOperation() SetStatusOperationResolver
-	SetStatusTimelineItem() SetStatusTimelineItemResolver
-	SetTitleOperation() SetTitleOperationResolver
-	SetTitleTimelineItem() SetTitleTimelineItemResolver
-}
-
-type DirectiveRoot struct {
-}
-
-type ComplexityRoot struct {
-	AddCommentAndCloseBugPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		CommentOperation func(childComplexity int) int
-		StatusOperation  func(childComplexity int) int
-	}
-
-	AddCommentAndReopenBugPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		CommentOperation func(childComplexity int) int
-		StatusOperation  func(childComplexity int) int
-	}
-
-	AddCommentOperation struct {
-		Author  func(childComplexity int) int
-		Date    func(childComplexity int) int
-		Files   func(childComplexity int) int
-		ID      func(childComplexity int) int
-		Message func(childComplexity int) int
-	}
-
-	AddCommentPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
-	}
-
-	AddCommentTimelineItem struct {
-		Author         func(childComplexity int) int
-		CreatedAt      func(childComplexity int) int
-		Edited         func(childComplexity int) int
-		Files          func(childComplexity int) int
-		History        func(childComplexity int) int
-		ID             func(childComplexity int) int
-		LastEdit       func(childComplexity int) int
-		Message        func(childComplexity int) int
-		MessageIsEmpty func(childComplexity int) int
-	}
-
-	Bug struct {
-		Actors       func(childComplexity int, after *string, before *string, first *int, last *int) int
-		Author       func(childComplexity int) int
-		Comments     func(childComplexity int, after *string, before *string, first *int, last *int) int
-		CreatedAt    func(childComplexity int) int
-		HumanID      func(childComplexity int) int
-		ID           func(childComplexity int) int
-		Labels       func(childComplexity int) int
-		LastEdit     func(childComplexity int) int
-		Operations   func(childComplexity int, after *string, before *string, first *int, last *int) int
-		Participants func(childComplexity int, after *string, before *string, first *int, last *int) int
-		Status       func(childComplexity int) int
-		Timeline     func(childComplexity int, after *string, before *string, first *int, last *int) int
-		Title        func(childComplexity int) int
-	}
-
-	BugConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
-	}
-
-	BugEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
-	}
-
-	ChangeLabelPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
-		Results          func(childComplexity int) int
-	}
 
-	CloseBugPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
-	}
 
-	Color struct {
-		B func(childComplexity int) int
-		G func(childComplexity int) int
-		R func(childComplexity int) int
-	}
 
-	Comment struct {
-		Author  func(childComplexity int) int
-		Files   func(childComplexity int) int
-		Message func(childComplexity int) int
-	}
 
-	CommentConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
-	}
 
-	CommentEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
-	}
 
-	CommentHistoryStep struct {
-		Date    func(childComplexity int) int
-		Message func(childComplexity int) int
-	}
 
-	CreateOperation struct {
-		Author  func(childComplexity int) int
-		Date    func(childComplexity int) int
-		Files   func(childComplexity int) int
-		ID      func(childComplexity int) int
-		Message func(childComplexity int) int
-		Title   func(childComplexity int) int
-	}
 
-	CreateTimelineItem struct {
-		Author         func(childComplexity int) int
-		CreatedAt      func(childComplexity int) int
-		Edited         func(childComplexity int) int
-		Files          func(childComplexity int) int
-		History        func(childComplexity int) int
-		ID             func(childComplexity int) int
-		LastEdit       func(childComplexity int) int
-		Message        func(childComplexity int) int
-		MessageIsEmpty func(childComplexity int) int
-	}
 
-	EditCommentOperation struct {
-		Author  func(childComplexity int) int
-		Date    func(childComplexity int) int
-		Files   func(childComplexity int) int
-		ID      func(childComplexity int) int
-		Message func(childComplexity int) int
-		Target  func(childComplexity int) int
-	}
 
-	EditCommentPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
-	}
 
-	Identity struct {
-		AvatarUrl   func(childComplexity int) int
-		DisplayName func(childComplexity int) int
-		Email       func(childComplexity int) int
-		HumanID     func(childComplexity int) int
-		ID          func(childComplexity int) int
-		IsProtected func(childComplexity int) int
-		Login       func(childComplexity int) int
-		Name        func(childComplexity int) int
-	}
 
-	IdentityConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
-	}
 
-	IdentityEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
-	}
 
-	Label struct {
-		Color func(childComplexity int) int
-		Name  func(childComplexity int) int
-	}
 
-	LabelChangeOperation struct {
-		Added   func(childComplexity int) int
-		Author  func(childComplexity int) int
-		Date    func(childComplexity int) int
-		ID      func(childComplexity int) int
-		Removed func(childComplexity int) int
-	}
 
-	LabelChangeResult struct {
-		Label  func(childComplexity int) int
-		Status func(childComplexity int) int
-	}
 
-	LabelChangeTimelineItem struct {
-		Added   func(childComplexity int) int
-		Author  func(childComplexity int) int
-		Date    func(childComplexity int) int
-		ID      func(childComplexity int) int
-		Removed func(childComplexity int) int
+	// NewExecutableSchema creates an ExecutableSchema from the ResolverRoot interface.
+	func NewExecutableSchema(cfg Config) graphql.ExecutableSchema {
+		return &executableSchema{
+			resolvers: cfg.Resolvers,
+			directives: cfg.Directives,
+			complexity: cfg.Complexity,
+		}
 	}
 
-	LabelConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
+	type Config struct {
+		Resolvers  ResolverRoot
+		Directives DirectiveRoot
+		Complexity ComplexityRoot
 	}
 
-	LabelEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
+	type ResolverRoot interface {AddCommentOperation() AddCommentOperationResolver
+		AddCommentTimelineItem() AddCommentTimelineItemResolver
+		Bug() BugResolver
+		Color() ColorResolver
+		Comment() CommentResolver
+		CommentHistoryStep() CommentHistoryStepResolver
+		CreateOperation() CreateOperationResolver
+		CreateTimelineItem() CreateTimelineItemResolver
+		EditCommentOperation() EditCommentOperationResolver
+		Identity() IdentityResolver
+		IdentityConnection() IdentityConnectionResolver
+		Label() LabelResolver
+		LabelChangeOperation() LabelChangeOperationResolver
+		LabelChangeResult() LabelChangeResultResolver
+		LabelChangeTimelineItem() LabelChangeTimelineItemResolver
+		Mutation() MutationResolver
+		Query() QueryResolver
+		Repository() RepositoryResolver
+		SetStatusOperation() SetStatusOperationResolver
+		SetStatusTimelineItem() SetStatusTimelineItemResolver
+		SetTitleOperation() SetTitleOperationResolver
+		SetTitleTimelineItem() SetTitleTimelineItemResolver
+		
+}
+
+	type DirectiveRoot struct {
+	
+	}
+
+	type ComplexityRoot struct {
+	
+		AddCommentAndCloseBugPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				CommentOperation func(childComplexity int) int
+				StatusOperation func(childComplexity int) int
+				
+			}
+	
+		AddCommentAndReopenBugPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				CommentOperation func(childComplexity int) int
+				StatusOperation func(childComplexity int) int
+				
+			}
+	
+		AddCommentOperation struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				Files func(childComplexity int) int
+				ID func(childComplexity int) int
+				Message func(childComplexity int) int
+				
+			}
+	
+		AddCommentPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		AddCommentTimelineItem struct {
+			Author func(childComplexity int) int
+				CreatedAt func(childComplexity int) int
+				Edited func(childComplexity int) int
+				Files func(childComplexity int) int
+				History func(childComplexity int) int
+				ID func(childComplexity int) int
+				LastEdit func(childComplexity int) int
+				Message func(childComplexity int) int
+				MessageIsEmpty func(childComplexity int) int
+				
+			}
+	
+		Bug struct {
+			Actors func(childComplexity int, after *string, before *string, first *int, last *int) int
+				Author func(childComplexity int) int
+				Comments func(childComplexity int, after *string, before *string, first *int, last *int) int
+				CreatedAt func(childComplexity int) int
+				HumanID func(childComplexity int) int
+				ID func(childComplexity int) int
+				Labels func(childComplexity int) int
+				LastEdit func(childComplexity int) int
+				Operations func(childComplexity int, after *string, before *string, first *int, last *int) int
+				Participants func(childComplexity int, after *string, before *string, first *int, last *int) int
+				Status func(childComplexity int) int
+				Timeline func(childComplexity int, after *string, before *string, first *int, last *int) int
+				Title func(childComplexity int) int
+				
+			}
+	
+		BugConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		BugEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		ChangeLabelPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				Results func(childComplexity int) int
+				
+			}
+	
+		CloseBugPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		Color struct {
+			B func(childComplexity int) int
+				G func(childComplexity int) int
+				R func(childComplexity int) int
+				
+			}
+	
+		Comment struct {
+			Author func(childComplexity int) int
+				Files func(childComplexity int) int
+				Message func(childComplexity int) int
+				
+			}
+	
+		CommentConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		CommentEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		CommentHistoryStep struct {
+			Date func(childComplexity int) int
+				Message func(childComplexity int) int
+				
+			}
+	
+		CreateOperation struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				Files func(childComplexity int) int
+				ID func(childComplexity int) int
+				Message func(childComplexity int) int
+				Title func(childComplexity int) int
+				
+			}
+	
+		CreateTimelineItem struct {
+			Author func(childComplexity int) int
+				CreatedAt func(childComplexity int) int
+				Edited func(childComplexity int) int
+				Files func(childComplexity int) int
+				History func(childComplexity int) int
+				ID func(childComplexity int) int
+				LastEdit func(childComplexity int) int
+				Message func(childComplexity int) int
+				MessageIsEmpty func(childComplexity int) int
+				
+			}
+	
+		EditCommentOperation struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				Files func(childComplexity int) int
+				ID func(childComplexity int) int
+				Message func(childComplexity int) int
+				Target func(childComplexity int) int
+				
+			}
+	
+		EditCommentPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		Identity struct {
+			AvatarUrl func(childComplexity int) int
+				DisplayName func(childComplexity int) int
+				Email func(childComplexity int) int
+				HumanID func(childComplexity int) int
+				ID func(childComplexity int) int
+				IsProtected func(childComplexity int) int
+				Login func(childComplexity int) int
+				Name func(childComplexity int) int
+				
+			}
+	
+		IdentityConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		IdentityEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		Label struct {
+			Color func(childComplexity int) int
+				Name func(childComplexity int) int
+				
+			}
+	
+		LabelChangeOperation struct {
+			Added func(childComplexity int) int
+				Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Removed func(childComplexity int) int
+				
+			}
+	
+		LabelChangeResult struct {
+			Label func(childComplexity int) int
+				Status func(childComplexity int) int
+				
+			}
+	
+		LabelChangeTimelineItem struct {
+			Added func(childComplexity int) int
+				Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Removed func(childComplexity int) int
+				
+			}
+	
+		LabelConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		LabelEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		Mutation struct {
+			AddComment func(childComplexity int, input models.AddCommentInput) int
+				AddCommentAndClose func(childComplexity int, input models.AddCommentAndCloseBugInput) int
+				AddCommentAndReopen func(childComplexity int, input models.AddCommentAndReopenBugInput) int
+				ChangeLabels func(childComplexity int, input *models.ChangeLabelInput) int
+				CloseBug func(childComplexity int, input models.CloseBugInput) int
+				EditComment func(childComplexity int, input models.EditCommentInput) int
+				NewBug func(childComplexity int, input models.NewBugInput) int
+				OpenBug func(childComplexity int, input models.OpenBugInput) int
+				SetTitle func(childComplexity int, input models.SetTitleInput) int
+				
+			}
+	
+		NewBugPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		OpenBugPayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		OperationConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		OperationEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		PageInfo struct {
+			EndCursor func(childComplexity int) int
+				HasNextPage func(childComplexity int) int
+				HasPreviousPage func(childComplexity int) int
+				StartCursor func(childComplexity int) int
+				
+			}
+	
+		Query struct {
+			Repository func(childComplexity int, ref *string) int
+				
+			}
+	
+		Repository struct {
+			AllBugs func(childComplexity int, after *string, before *string, first *int, last *int, query *string) int
+				AllIdentities func(childComplexity int, after *string, before *string, first *int, last *int) int
+				Bug func(childComplexity int, prefix string) int
+				Identity func(childComplexity int, prefix string) int
+				Name func(childComplexity int) int
+				UserIdentity func(childComplexity int) int
+				ValidLabels func(childComplexity int, after *string, before *string, first *int, last *int) int
+				
+			}
+	
+		SetStatusOperation struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Status func(childComplexity int) int
+				
+			}
+	
+		SetStatusTimelineItem struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Status func(childComplexity int) int
+				
+			}
+	
+		SetTitleOperation struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Title func(childComplexity int) int
+				Was func(childComplexity int) int
+				
+			}
+	
+		SetTitlePayload struct {
+			Bug func(childComplexity int) int
+				ClientMutationID func(childComplexity int) int
+				Operation func(childComplexity int) int
+				
+			}
+	
+		SetTitleTimelineItem struct {
+			Author func(childComplexity int) int
+				Date func(childComplexity int) int
+				ID func(childComplexity int) int
+				Title func(childComplexity int) int
+				Was func(childComplexity int) int
+				
+			}
+	
+		TimelineItemConnection struct {
+			Edges func(childComplexity int) int
+				Nodes func(childComplexity int) int
+				PageInfo func(childComplexity int) int
+				TotalCount func(childComplexity int) int
+				
+			}
+	
+		TimelineItemEdge struct {
+			Cursor func(childComplexity int) int
+				Node func(childComplexity int) int
+				
+			}
+	
+		
+	
+		
+	
+		
+	
+		
+	
+		
+	
+		
+	
+	}
+
+
+
+		type AddCommentOperationResolver interface {
+		ID(ctx context.Context, obj *bug.AddCommentOperation) (string, error)
+		Author(ctx context.Context, obj *bug.AddCommentOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.AddCommentOperation) (*time.Time, error)
+		
+		
+		
+		}
+		type AddCommentTimelineItemResolver interface {
+		ID(ctx context.Context, obj *bug.AddCommentTimelineItem) (string, error)
+		Author(ctx context.Context, obj *bug.AddCommentTimelineItem) (models.IdentityWrapper, error)
+		
+		
+		
+		CreatedAt(ctx context.Context, obj *bug.AddCommentTimelineItem) (*time.Time, error)
+		LastEdit(ctx context.Context, obj *bug.AddCommentTimelineItem) (*time.Time, error)
+		
+		
+		
+		}
+		type BugResolver interface {
+		ID(ctx context.Context, obj models.BugWrapper) (string, error)
+		HumanID(ctx context.Context, obj models.BugWrapper) (string, error)
+		Status(ctx context.Context, obj models.BugWrapper) (models.Status, error)
+		
+		
+		
+		
+		
+		Actors(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[NodeT any], error)
+		Participants(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[NodeT any], error)
+		Comments(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.CommentConnection, error)
+		Timeline(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.TimelineItemConnection, error)
+		Operations(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.OperationConnection, error)
+		
+		}
+		type ColorResolver interface {
+		R(ctx context.Context, obj *color.RGBA) (int, error)
+		G(ctx context.Context, obj *color.RGBA) (int, error)
+		B(ctx context.Context, obj *color.RGBA) (int, error)
+		
+		}
+		type CommentResolver interface {
+		Author(ctx context.Context, obj *bug.Comment) (models.IdentityWrapper, error)
+		
+		
+		
+		}
+		type CommentHistoryStepResolver interface {
+		
+		Date(ctx context.Context, obj *bug.CommentHistoryStep) (*time.Time, error)
+		
+		}
+		type CreateOperationResolver interface {
+		ID(ctx context.Context, obj *bug.CreateOperation) (string, error)
+		Author(ctx context.Context, obj *bug.CreateOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.CreateOperation) (*time.Time, error)
+		
+		
+		
+		
+		}
+		type CreateTimelineItemResolver interface {
+		ID(ctx context.Context, obj *bug.CreateTimelineItem) (string, error)
+		Author(ctx context.Context, obj *bug.CreateTimelineItem) (models.IdentityWrapper, error)
+		
+		
+		
+		CreatedAt(ctx context.Context, obj *bug.CreateTimelineItem) (*time.Time, error)
+		LastEdit(ctx context.Context, obj *bug.CreateTimelineItem) (*time.Time, error)
+		
+		
+		
+		}
+		type EditCommentOperationResolver interface {
+		ID(ctx context.Context, obj *bug.EditCommentOperation) (string, error)
+		Author(ctx context.Context, obj *bug.EditCommentOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.EditCommentOperation) (*time.Time, error)
+		Target(ctx context.Context, obj *bug.EditCommentOperation) (string, error)
+		
+		
+		
+		}
+		type IdentityResolver interface {
+		ID(ctx context.Context, obj models.IdentityWrapper) (string, error)
+		HumanID(ctx context.Context, obj models.IdentityWrapper) (string, error)
+		
+		
+		
+		
+		
+		
+		
+		}
+		type IdentityConnectionResolver interface {
+		Edges(ctx context.Context, obj *connections.Result[NodeT any]) ([]*models.IdentityEdge, error)
+		Nodes(ctx context.Context, obj *connections.Result[NodeT any]) ([]models.IdentityWrapper, error)
+		
+		
+		
+		}
+		type LabelResolver interface {
+		Name(ctx context.Context, obj *bug.Label) (string, error)
+		Color(ctx context.Context, obj *bug.Label) (*color.RGBA, error)
+		
+		}
+		type LabelChangeOperationResolver interface {
+		ID(ctx context.Context, obj *bug.LabelChangeOperation) (string, error)
+		Author(ctx context.Context, obj *bug.LabelChangeOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.LabelChangeOperation) (*time.Time, error)
+		
+		
+		
+		}
+		type LabelChangeResultResolver interface {
+		
+		Status(ctx context.Context, obj *bug.LabelChangeResult) (models.LabelChangeStatus, error)
+		
+		}
+		type LabelChangeTimelineItemResolver interface {
+		ID(ctx context.Context, obj *bug.LabelChangeTimelineItem) (string, error)
+		Author(ctx context.Context, obj *bug.LabelChangeTimelineItem) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.LabelChangeTimelineItem) (*time.Time, error)
+		
+		
+		
+		}
+		type MutationResolver interface {
+		NewBug(ctx context.Context, input models.NewBugInput) (*models.NewBugPayload, error)
+		AddComment(ctx context.Context, input models.AddCommentInput) (*models.AddCommentPayload, error)
+		AddCommentAndClose(ctx context.Context, input models.AddCommentAndCloseBugInput) (*models.AddCommentAndCloseBugPayload, error)
+		AddCommentAndReopen(ctx context.Context, input models.AddCommentAndReopenBugInput) (*models.AddCommentAndReopenBugPayload, error)
+		EditComment(ctx context.Context, input models.EditCommentInput) (*models.EditCommentPayload, error)
+		ChangeLabels(ctx context.Context, input *models.ChangeLabelInput) (*models.ChangeLabelPayload, error)
+		OpenBug(ctx context.Context, input models.OpenBugInput) (*models.OpenBugPayload, error)
+		CloseBug(ctx context.Context, input models.CloseBugInput) (*models.CloseBugPayload, error)
+		SetTitle(ctx context.Context, input models.SetTitleInput) (*models.SetTitlePayload, error)
+		
+		}
+		type QueryResolver interface {
+		Repository(ctx context.Context, ref *string) (*models.Repository, error)
+		
+		
+		
+		}
+		type RepositoryResolver interface {
+		Name(ctx context.Context, obj *models.Repository) (*string, error)
+		AllBugs(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int, query *string) (*models.BugConnection, error)
+		Bug(ctx context.Context, obj *models.Repository, prefix string) (models.BugWrapper, error)
+		AllIdentities(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int) (*connections.Result[NodeT any], error)
+		Identity(ctx context.Context, obj *models.Repository, prefix string) (models.IdentityWrapper, error)
+		UserIdentity(ctx context.Context, obj *models.Repository) (models.IdentityWrapper, error)
+		ValidLabels(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int) (*models.LabelConnection, error)
+		
+		}
+		type SetStatusOperationResolver interface {
+		ID(ctx context.Context, obj *bug.SetStatusOperation) (string, error)
+		Author(ctx context.Context, obj *bug.SetStatusOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.SetStatusOperation) (*time.Time, error)
+		Status(ctx context.Context, obj *bug.SetStatusOperation) (models.Status, error)
+		
+		}
+		type SetStatusTimelineItemResolver interface {
+		ID(ctx context.Context, obj *bug.SetStatusTimelineItem) (string, error)
+		Author(ctx context.Context, obj *bug.SetStatusTimelineItem) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.SetStatusTimelineItem) (*time.Time, error)
+		Status(ctx context.Context, obj *bug.SetStatusTimelineItem) (models.Status, error)
+		
+		}
+		type SetTitleOperationResolver interface {
+		ID(ctx context.Context, obj *bug.SetTitleOperation) (string, error)
+		Author(ctx context.Context, obj *bug.SetTitleOperation) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.SetTitleOperation) (*time.Time, error)
+		
+		
+		
+		}
+		type SetTitleTimelineItemResolver interface {
+		ID(ctx context.Context, obj *bug.SetTitleTimelineItem) (string, error)
+		Author(ctx context.Context, obj *bug.SetTitleTimelineItem) (models.IdentityWrapper, error)
+		Date(ctx context.Context, obj *bug.SetTitleTimelineItem) (*time.Time, error)
+		
+		
+		
+		}
+
+
+
+
+	type executableSchema struct {
+		resolvers  ResolverRoot
+		directives DirectiveRoot
+		complexity ComplexityRoot
+	}
+
+	func (e *executableSchema) Schema() *ast.Schema {
+		return parsedSchema
+	}
+
+	func (e *executableSchema) Complexity(typeName, field string, childComplexity int, rawArgs map[string]interface{}) (int, bool) {
+		ec := executionContext{nil, e}
+		_ = ec
+		switch typeName + "." + field {
+		
+			
+				case "AddCommentAndCloseBugPayload.bug":
+								if e.complexity.AddCommentAndCloseBugPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndCloseBugPayload.Bug(childComplexity), true
+							
+				case "AddCommentAndCloseBugPayload.clientMutationId":
+								if e.complexity.AddCommentAndCloseBugPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndCloseBugPayload.ClientMutationID(childComplexity), true
+							
+				case "AddCommentAndCloseBugPayload.commentOperation":
+								if e.complexity.AddCommentAndCloseBugPayload.CommentOperation == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndCloseBugPayload.CommentOperation(childComplexity), true
+							
+				case "AddCommentAndCloseBugPayload.statusOperation":
+								if e.complexity.AddCommentAndCloseBugPayload.StatusOperation == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndCloseBugPayload.StatusOperation(childComplexity), true
+							
+				
+			
+		
+			
+				case "AddCommentAndReopenBugPayload.bug":
+								if e.complexity.AddCommentAndReopenBugPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndReopenBugPayload.Bug(childComplexity), true
+							
+				case "AddCommentAndReopenBugPayload.clientMutationId":
+								if e.complexity.AddCommentAndReopenBugPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndReopenBugPayload.ClientMutationID(childComplexity), true
+							
+				case "AddCommentAndReopenBugPayload.commentOperation":
+								if e.complexity.AddCommentAndReopenBugPayload.CommentOperation == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndReopenBugPayload.CommentOperation(childComplexity), true
+							
+				case "AddCommentAndReopenBugPayload.statusOperation":
+								if e.complexity.AddCommentAndReopenBugPayload.StatusOperation == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentAndReopenBugPayload.StatusOperation(childComplexity), true
+							
+				
+			
+		
+			
+				case "AddCommentOperation.author":
+								if e.complexity.AddCommentOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentOperation.Author(childComplexity), true
+							
+				case "AddCommentOperation.date":
+								if e.complexity.AddCommentOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentOperation.Date(childComplexity), true
+							
+				case "AddCommentOperation.files":
+								if e.complexity.AddCommentOperation.Files == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentOperation.Files(childComplexity), true
+							
+				case "AddCommentOperation.id":
+								if e.complexity.AddCommentOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentOperation.ID(childComplexity), true
+							
+				case "AddCommentOperation.message":
+								if e.complexity.AddCommentOperation.Message == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentOperation.Message(childComplexity), true
+							
+				
+			
+		
+			
+				case "AddCommentPayload.bug":
+								if e.complexity.AddCommentPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentPayload.Bug(childComplexity), true
+							
+				case "AddCommentPayload.clientMutationId":
+								if e.complexity.AddCommentPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentPayload.ClientMutationID(childComplexity), true
+							
+				case "AddCommentPayload.operation":
+								if e.complexity.AddCommentPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentPayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "AddCommentTimelineItem.author":
+								if e.complexity.AddCommentTimelineItem.Author == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.Author(childComplexity), true
+							
+				case "AddCommentTimelineItem.createdAt":
+								if e.complexity.AddCommentTimelineItem.CreatedAt == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.CreatedAt(childComplexity), true
+							
+				case "AddCommentTimelineItem.edited":
+								if e.complexity.AddCommentTimelineItem.Edited == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.Edited(childComplexity), true
+							
+				case "AddCommentTimelineItem.files":
+								if e.complexity.AddCommentTimelineItem.Files == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.Files(childComplexity), true
+							
+				case "AddCommentTimelineItem.history":
+								if e.complexity.AddCommentTimelineItem.History == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.History(childComplexity), true
+							
+				case "AddCommentTimelineItem.id":
+								if e.complexity.AddCommentTimelineItem.ID == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.ID(childComplexity), true
+							
+				case "AddCommentTimelineItem.lastEdit":
+								if e.complexity.AddCommentTimelineItem.LastEdit == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.LastEdit(childComplexity), true
+							
+				case "AddCommentTimelineItem.message":
+								if e.complexity.AddCommentTimelineItem.Message == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.Message(childComplexity), true
+							
+				case "AddCommentTimelineItem.messageIsEmpty":
+								if e.complexity.AddCommentTimelineItem.MessageIsEmpty == nil {
+									break
+								}
+								
+								return e.complexity.AddCommentTimelineItem.MessageIsEmpty(childComplexity), true
+							
+				
+			
+		
+			
+				case "Bug.actors":
+								if e.complexity.Bug.Actors == nil {
+									break
+								}
+								
+									args, err := ec.field_Bug_actors_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Bug.Actors(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Bug.author":
+								if e.complexity.Bug.Author == nil {
+									break
+								}
+								
+								return e.complexity.Bug.Author(childComplexity), true
+							
+				case "Bug.comments":
+								if e.complexity.Bug.Comments == nil {
+									break
+								}
+								
+									args, err := ec.field_Bug_comments_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Bug.Comments(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Bug.createdAt":
+								if e.complexity.Bug.CreatedAt == nil {
+									break
+								}
+								
+								return e.complexity.Bug.CreatedAt(childComplexity), true
+							
+				case "Bug.humanId":
+								if e.complexity.Bug.HumanID == nil {
+									break
+								}
+								
+								return e.complexity.Bug.HumanID(childComplexity), true
+							
+				case "Bug.id":
+								if e.complexity.Bug.ID == nil {
+									break
+								}
+								
+								return e.complexity.Bug.ID(childComplexity), true
+							
+				case "Bug.labels":
+								if e.complexity.Bug.Labels == nil {
+									break
+								}
+								
+								return e.complexity.Bug.Labels(childComplexity), true
+							
+				case "Bug.lastEdit":
+								if e.complexity.Bug.LastEdit == nil {
+									break
+								}
+								
+								return e.complexity.Bug.LastEdit(childComplexity), true
+							
+				case "Bug.operations":
+								if e.complexity.Bug.Operations == nil {
+									break
+								}
+								
+									args, err := ec.field_Bug_operations_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Bug.Operations(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Bug.participants":
+								if e.complexity.Bug.Participants == nil {
+									break
+								}
+								
+									args, err := ec.field_Bug_participants_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Bug.Participants(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Bug.status":
+								if e.complexity.Bug.Status == nil {
+									break
+								}
+								
+								return e.complexity.Bug.Status(childComplexity), true
+							
+				case "Bug.timeline":
+								if e.complexity.Bug.Timeline == nil {
+									break
+								}
+								
+									args, err := ec.field_Bug_timeline_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Bug.Timeline(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Bug.title":
+								if e.complexity.Bug.Title == nil {
+									break
+								}
+								
+								return e.complexity.Bug.Title(childComplexity), true
+							
+				
+			
+		
+			
+				case "BugConnection.edges":
+								if e.complexity.BugConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.BugConnection.Edges(childComplexity), true
+							
+				case "BugConnection.nodes":
+								if e.complexity.BugConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.BugConnection.Nodes(childComplexity), true
+							
+				case "BugConnection.pageInfo":
+								if e.complexity.BugConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.BugConnection.PageInfo(childComplexity), true
+							
+				case "BugConnection.totalCount":
+								if e.complexity.BugConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.BugConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "BugEdge.cursor":
+								if e.complexity.BugEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.BugEdge.Cursor(childComplexity), true
+							
+				case "BugEdge.node":
+								if e.complexity.BugEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.BugEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+				case "ChangeLabelPayload.bug":
+								if e.complexity.ChangeLabelPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.ChangeLabelPayload.Bug(childComplexity), true
+							
+				case "ChangeLabelPayload.clientMutationId":
+								if e.complexity.ChangeLabelPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.ChangeLabelPayload.ClientMutationID(childComplexity), true
+							
+				case "ChangeLabelPayload.operation":
+								if e.complexity.ChangeLabelPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.ChangeLabelPayload.Operation(childComplexity), true
+							
+				case "ChangeLabelPayload.results":
+								if e.complexity.ChangeLabelPayload.Results == nil {
+									break
+								}
+								
+								return e.complexity.ChangeLabelPayload.Results(childComplexity), true
+							
+				
+			
+		
+			
+				case "CloseBugPayload.bug":
+								if e.complexity.CloseBugPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.CloseBugPayload.Bug(childComplexity), true
+							
+				case "CloseBugPayload.clientMutationId":
+								if e.complexity.CloseBugPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.CloseBugPayload.ClientMutationID(childComplexity), true
+							
+				case "CloseBugPayload.operation":
+								if e.complexity.CloseBugPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.CloseBugPayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "Color.B":
+								if e.complexity.Color.B == nil {
+									break
+								}
+								
+								return e.complexity.Color.B(childComplexity), true
+							
+				case "Color.G":
+								if e.complexity.Color.G == nil {
+									break
+								}
+								
+								return e.complexity.Color.G(childComplexity), true
+							
+				case "Color.R":
+								if e.complexity.Color.R == nil {
+									break
+								}
+								
+								return e.complexity.Color.R(childComplexity), true
+							
+				
+			
+		
+			
+				case "Comment.author":
+								if e.complexity.Comment.Author == nil {
+									break
+								}
+								
+								return e.complexity.Comment.Author(childComplexity), true
+							
+				case "Comment.files":
+								if e.complexity.Comment.Files == nil {
+									break
+								}
+								
+								return e.complexity.Comment.Files(childComplexity), true
+							
+				case "Comment.message":
+								if e.complexity.Comment.Message == nil {
+									break
+								}
+								
+								return e.complexity.Comment.Message(childComplexity), true
+							
+				
+			
+		
+			
+				case "CommentConnection.edges":
+								if e.complexity.CommentConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.CommentConnection.Edges(childComplexity), true
+							
+				case "CommentConnection.nodes":
+								if e.complexity.CommentConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.CommentConnection.Nodes(childComplexity), true
+							
+				case "CommentConnection.pageInfo":
+								if e.complexity.CommentConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.CommentConnection.PageInfo(childComplexity), true
+							
+				case "CommentConnection.totalCount":
+								if e.complexity.CommentConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.CommentConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "CommentEdge.cursor":
+								if e.complexity.CommentEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.CommentEdge.Cursor(childComplexity), true
+							
+				case "CommentEdge.node":
+								if e.complexity.CommentEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.CommentEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+				case "CommentHistoryStep.date":
+								if e.complexity.CommentHistoryStep.Date == nil {
+									break
+								}
+								
+								return e.complexity.CommentHistoryStep.Date(childComplexity), true
+							
+				case "CommentHistoryStep.message":
+								if e.complexity.CommentHistoryStep.Message == nil {
+									break
+								}
+								
+								return e.complexity.CommentHistoryStep.Message(childComplexity), true
+							
+				
+			
+		
+			
+				case "CreateOperation.author":
+								if e.complexity.CreateOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.Author(childComplexity), true
+							
+				case "CreateOperation.date":
+								if e.complexity.CreateOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.Date(childComplexity), true
+							
+				case "CreateOperation.files":
+								if e.complexity.CreateOperation.Files == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.Files(childComplexity), true
+							
+				case "CreateOperation.id":
+								if e.complexity.CreateOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.ID(childComplexity), true
+							
+				case "CreateOperation.message":
+								if e.complexity.CreateOperation.Message == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.Message(childComplexity), true
+							
+				case "CreateOperation.title":
+								if e.complexity.CreateOperation.Title == nil {
+									break
+								}
+								
+								return e.complexity.CreateOperation.Title(childComplexity), true
+							
+				
+			
+		
+			
+				case "CreateTimelineItem.author":
+								if e.complexity.CreateTimelineItem.Author == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.Author(childComplexity), true
+							
+				case "CreateTimelineItem.createdAt":
+								if e.complexity.CreateTimelineItem.CreatedAt == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.CreatedAt(childComplexity), true
+							
+				case "CreateTimelineItem.edited":
+								if e.complexity.CreateTimelineItem.Edited == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.Edited(childComplexity), true
+							
+				case "CreateTimelineItem.files":
+								if e.complexity.CreateTimelineItem.Files == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.Files(childComplexity), true
+							
+				case "CreateTimelineItem.history":
+								if e.complexity.CreateTimelineItem.History == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.History(childComplexity), true
+							
+				case "CreateTimelineItem.id":
+								if e.complexity.CreateTimelineItem.ID == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.ID(childComplexity), true
+							
+				case "CreateTimelineItem.lastEdit":
+								if e.complexity.CreateTimelineItem.LastEdit == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.LastEdit(childComplexity), true
+							
+				case "CreateTimelineItem.message":
+								if e.complexity.CreateTimelineItem.Message == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.Message(childComplexity), true
+							
+				case "CreateTimelineItem.messageIsEmpty":
+								if e.complexity.CreateTimelineItem.MessageIsEmpty == nil {
+									break
+								}
+								
+								return e.complexity.CreateTimelineItem.MessageIsEmpty(childComplexity), true
+							
+				
+			
+		
+			
+				case "EditCommentOperation.author":
+								if e.complexity.EditCommentOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.Author(childComplexity), true
+							
+				case "EditCommentOperation.date":
+								if e.complexity.EditCommentOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.Date(childComplexity), true
+							
+				case "EditCommentOperation.files":
+								if e.complexity.EditCommentOperation.Files == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.Files(childComplexity), true
+							
+				case "EditCommentOperation.id":
+								if e.complexity.EditCommentOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.ID(childComplexity), true
+							
+				case "EditCommentOperation.message":
+								if e.complexity.EditCommentOperation.Message == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.Message(childComplexity), true
+							
+				case "EditCommentOperation.target":
+								if e.complexity.EditCommentOperation.Target == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentOperation.Target(childComplexity), true
+							
+				
+			
+		
+			
+				case "EditCommentPayload.bug":
+								if e.complexity.EditCommentPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentPayload.Bug(childComplexity), true
+							
+				case "EditCommentPayload.clientMutationId":
+								if e.complexity.EditCommentPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentPayload.ClientMutationID(childComplexity), true
+							
+				case "EditCommentPayload.operation":
+								if e.complexity.EditCommentPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.EditCommentPayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "Identity.avatarUrl":
+								if e.complexity.Identity.AvatarUrl == nil {
+									break
+								}
+								
+								return e.complexity.Identity.AvatarUrl(childComplexity), true
+							
+				case "Identity.displayName":
+								if e.complexity.Identity.DisplayName == nil {
+									break
+								}
+								
+								return e.complexity.Identity.DisplayName(childComplexity), true
+							
+				case "Identity.email":
+								if e.complexity.Identity.Email == nil {
+									break
+								}
+								
+								return e.complexity.Identity.Email(childComplexity), true
+							
+				case "Identity.humanId":
+								if e.complexity.Identity.HumanID == nil {
+									break
+								}
+								
+								return e.complexity.Identity.HumanID(childComplexity), true
+							
+				case "Identity.id":
+								if e.complexity.Identity.ID == nil {
+									break
+								}
+								
+								return e.complexity.Identity.ID(childComplexity), true
+							
+				case "Identity.isProtected":
+								if e.complexity.Identity.IsProtected == nil {
+									break
+								}
+								
+								return e.complexity.Identity.IsProtected(childComplexity), true
+							
+				case "Identity.login":
+								if e.complexity.Identity.Login == nil {
+									break
+								}
+								
+								return e.complexity.Identity.Login(childComplexity), true
+							
+				case "Identity.name":
+								if e.complexity.Identity.Name == nil {
+									break
+								}
+								
+								return e.complexity.Identity.Name(childComplexity), true
+							
+				
+			
+		
+			
+				case "IdentityConnection.edges":
+								if e.complexity.IdentityConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.IdentityConnection.Edges(childComplexity), true
+							
+				case "IdentityConnection.nodes":
+								if e.complexity.IdentityConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.IdentityConnection.Nodes(childComplexity), true
+							
+				case "IdentityConnection.pageInfo":
+								if e.complexity.IdentityConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.IdentityConnection.PageInfo(childComplexity), true
+							
+				case "IdentityConnection.totalCount":
+								if e.complexity.IdentityConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.IdentityConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "IdentityEdge.cursor":
+								if e.complexity.IdentityEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.IdentityEdge.Cursor(childComplexity), true
+							
+				case "IdentityEdge.node":
+								if e.complexity.IdentityEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.IdentityEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+				case "Label.color":
+								if e.complexity.Label.Color == nil {
+									break
+								}
+								
+								return e.complexity.Label.Color(childComplexity), true
+							
+				case "Label.name":
+								if e.complexity.Label.Name == nil {
+									break
+								}
+								
+								return e.complexity.Label.Name(childComplexity), true
+							
+				
+			
+		
+			
+				case "LabelChangeOperation.added":
+								if e.complexity.LabelChangeOperation.Added == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeOperation.Added(childComplexity), true
+							
+				case "LabelChangeOperation.author":
+								if e.complexity.LabelChangeOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeOperation.Author(childComplexity), true
+							
+				case "LabelChangeOperation.date":
+								if e.complexity.LabelChangeOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeOperation.Date(childComplexity), true
+							
+				case "LabelChangeOperation.id":
+								if e.complexity.LabelChangeOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeOperation.ID(childComplexity), true
+							
+				case "LabelChangeOperation.removed":
+								if e.complexity.LabelChangeOperation.Removed == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeOperation.Removed(childComplexity), true
+							
+				
+			
+		
+			
+				case "LabelChangeResult.label":
+								if e.complexity.LabelChangeResult.Label == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeResult.Label(childComplexity), true
+							
+				case "LabelChangeResult.status":
+								if e.complexity.LabelChangeResult.Status == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeResult.Status(childComplexity), true
+							
+				
+			
+		
+			
+				case "LabelChangeTimelineItem.added":
+								if e.complexity.LabelChangeTimelineItem.Added == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeTimelineItem.Added(childComplexity), true
+							
+				case "LabelChangeTimelineItem.author":
+								if e.complexity.LabelChangeTimelineItem.Author == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeTimelineItem.Author(childComplexity), true
+							
+				case "LabelChangeTimelineItem.date":
+								if e.complexity.LabelChangeTimelineItem.Date == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeTimelineItem.Date(childComplexity), true
+							
+				case "LabelChangeTimelineItem.id":
+								if e.complexity.LabelChangeTimelineItem.ID == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeTimelineItem.ID(childComplexity), true
+							
+				case "LabelChangeTimelineItem.removed":
+								if e.complexity.LabelChangeTimelineItem.Removed == nil {
+									break
+								}
+								
+								return e.complexity.LabelChangeTimelineItem.Removed(childComplexity), true
+							
+				
+			
+		
+			
+				case "LabelConnection.edges":
+								if e.complexity.LabelConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.LabelConnection.Edges(childComplexity), true
+							
+				case "LabelConnection.nodes":
+								if e.complexity.LabelConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.LabelConnection.Nodes(childComplexity), true
+							
+				case "LabelConnection.pageInfo":
+								if e.complexity.LabelConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.LabelConnection.PageInfo(childComplexity), true
+							
+				case "LabelConnection.totalCount":
+								if e.complexity.LabelConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.LabelConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "LabelEdge.cursor":
+								if e.complexity.LabelEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.LabelEdge.Cursor(childComplexity), true
+							
+				case "LabelEdge.node":
+								if e.complexity.LabelEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.LabelEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+				case "Mutation.addComment":
+								if e.complexity.Mutation.AddComment == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_addComment_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.AddComment(childComplexity, args["input"].(models.AddCommentInput) ), true
+							
+				case "Mutation.addCommentAndClose":
+								if e.complexity.Mutation.AddCommentAndClose == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_addCommentAndClose_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.AddCommentAndClose(childComplexity, args["input"].(models.AddCommentAndCloseBugInput) ), true
+							
+				case "Mutation.addCommentAndReopen":
+								if e.complexity.Mutation.AddCommentAndReopen == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_addCommentAndReopen_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.AddCommentAndReopen(childComplexity, args["input"].(models.AddCommentAndReopenBugInput) ), true
+							
+				case "Mutation.changeLabels":
+								if e.complexity.Mutation.ChangeLabels == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_changeLabels_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.ChangeLabels(childComplexity, args["input"].(*models.ChangeLabelInput) ), true
+							
+				case "Mutation.closeBug":
+								if e.complexity.Mutation.CloseBug == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_closeBug_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.CloseBug(childComplexity, args["input"].(models.CloseBugInput) ), true
+							
+				case "Mutation.editComment":
+								if e.complexity.Mutation.EditComment == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_editComment_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.EditComment(childComplexity, args["input"].(models.EditCommentInput) ), true
+							
+				case "Mutation.newBug":
+								if e.complexity.Mutation.NewBug == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_newBug_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.NewBug(childComplexity, args["input"].(models.NewBugInput) ), true
+							
+				case "Mutation.openBug":
+								if e.complexity.Mutation.OpenBug == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_openBug_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.OpenBug(childComplexity, args["input"].(models.OpenBugInput) ), true
+							
+				case "Mutation.setTitle":
+								if e.complexity.Mutation.SetTitle == nil {
+									break
+								}
+								
+									args, err := ec.field_Mutation_setTitle_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Mutation.SetTitle(childComplexity, args["input"].(models.SetTitleInput) ), true
+							
+				
+			
+		
+			
+				case "NewBugPayload.bug":
+								if e.complexity.NewBugPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.NewBugPayload.Bug(childComplexity), true
+							
+				case "NewBugPayload.clientMutationId":
+								if e.complexity.NewBugPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.NewBugPayload.ClientMutationID(childComplexity), true
+							
+				case "NewBugPayload.operation":
+								if e.complexity.NewBugPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.NewBugPayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "OpenBugPayload.bug":
+								if e.complexity.OpenBugPayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.OpenBugPayload.Bug(childComplexity), true
+							
+				case "OpenBugPayload.clientMutationId":
+								if e.complexity.OpenBugPayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.OpenBugPayload.ClientMutationID(childComplexity), true
+							
+				case "OpenBugPayload.operation":
+								if e.complexity.OpenBugPayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.OpenBugPayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "OperationConnection.edges":
+								if e.complexity.OperationConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.OperationConnection.Edges(childComplexity), true
+							
+				case "OperationConnection.nodes":
+								if e.complexity.OperationConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.OperationConnection.Nodes(childComplexity), true
+							
+				case "OperationConnection.pageInfo":
+								if e.complexity.OperationConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.OperationConnection.PageInfo(childComplexity), true
+							
+				case "OperationConnection.totalCount":
+								if e.complexity.OperationConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.OperationConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "OperationEdge.cursor":
+								if e.complexity.OperationEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.OperationEdge.Cursor(childComplexity), true
+							
+				case "OperationEdge.node":
+								if e.complexity.OperationEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.OperationEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+				case "PageInfo.endCursor":
+								if e.complexity.PageInfo.EndCursor == nil {
+									break
+								}
+								
+								return e.complexity.PageInfo.EndCursor(childComplexity), true
+							
+				case "PageInfo.hasNextPage":
+								if e.complexity.PageInfo.HasNextPage == nil {
+									break
+								}
+								
+								return e.complexity.PageInfo.HasNextPage(childComplexity), true
+							
+				case "PageInfo.hasPreviousPage":
+								if e.complexity.PageInfo.HasPreviousPage == nil {
+									break
+								}
+								
+								return e.complexity.PageInfo.HasPreviousPage(childComplexity), true
+							
+				case "PageInfo.startCursor":
+								if e.complexity.PageInfo.StartCursor == nil {
+									break
+								}
+								
+								return e.complexity.PageInfo.StartCursor(childComplexity), true
+							
+				
+			
+		
+			
+				case "Query.repository":
+								if e.complexity.Query.Repository == nil {
+									break
+								}
+								
+									args, err := ec.field_Query_repository_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Query.Repository(childComplexity, args["ref"].(*string) ), true
+							
+				
+				
+				
+			
+		
+			
+				case "Repository.allBugs":
+								if e.complexity.Repository.AllBugs == nil {
+									break
+								}
+								
+									args, err := ec.field_Repository_allBugs_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Repository.AllBugs(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int), args["query"].(*string) ), true
+							
+				case "Repository.allIdentities":
+								if e.complexity.Repository.AllIdentities == nil {
+									break
+								}
+								
+									args, err := ec.field_Repository_allIdentities_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Repository.AllIdentities(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				case "Repository.bug":
+								if e.complexity.Repository.Bug == nil {
+									break
+								}
+								
+									args, err := ec.field_Repository_bug_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Repository.Bug(childComplexity, args["prefix"].(string) ), true
+							
+				case "Repository.identity":
+								if e.complexity.Repository.Identity == nil {
+									break
+								}
+								
+									args, err := ec.field_Repository_identity_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Repository.Identity(childComplexity, args["prefix"].(string) ), true
+							
+				case "Repository.name":
+								if e.complexity.Repository.Name == nil {
+									break
+								}
+								
+								return e.complexity.Repository.Name(childComplexity), true
+							
+				case "Repository.userIdentity":
+								if e.complexity.Repository.UserIdentity == nil {
+									break
+								}
+								
+								return e.complexity.Repository.UserIdentity(childComplexity), true
+							
+				case "Repository.validLabels":
+								if e.complexity.Repository.ValidLabels == nil {
+									break
+								}
+								
+									args, err := ec.field_Repository_validLabels_args(context.TODO(),rawArgs)
+									if err != nil {
+										return 0, false
+									}
+								
+								return e.complexity.Repository.ValidLabels(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int) ), true
+							
+				
+			
+		
+			
+				case "SetStatusOperation.author":
+								if e.complexity.SetStatusOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusOperation.Author(childComplexity), true
+							
+				case "SetStatusOperation.date":
+								if e.complexity.SetStatusOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusOperation.Date(childComplexity), true
+							
+				case "SetStatusOperation.id":
+								if e.complexity.SetStatusOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusOperation.ID(childComplexity), true
+							
+				case "SetStatusOperation.status":
+								if e.complexity.SetStatusOperation.Status == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusOperation.Status(childComplexity), true
+							
+				
+			
+		
+			
+				case "SetStatusTimelineItem.author":
+								if e.complexity.SetStatusTimelineItem.Author == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusTimelineItem.Author(childComplexity), true
+							
+				case "SetStatusTimelineItem.date":
+								if e.complexity.SetStatusTimelineItem.Date == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusTimelineItem.Date(childComplexity), true
+							
+				case "SetStatusTimelineItem.id":
+								if e.complexity.SetStatusTimelineItem.ID == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusTimelineItem.ID(childComplexity), true
+							
+				case "SetStatusTimelineItem.status":
+								if e.complexity.SetStatusTimelineItem.Status == nil {
+									break
+								}
+								
+								return e.complexity.SetStatusTimelineItem.Status(childComplexity), true
+							
+				
+			
+		
+			
+				case "SetTitleOperation.author":
+								if e.complexity.SetTitleOperation.Author == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleOperation.Author(childComplexity), true
+							
+				case "SetTitleOperation.date":
+								if e.complexity.SetTitleOperation.Date == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleOperation.Date(childComplexity), true
+							
+				case "SetTitleOperation.id":
+								if e.complexity.SetTitleOperation.ID == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleOperation.ID(childComplexity), true
+							
+				case "SetTitleOperation.title":
+								if e.complexity.SetTitleOperation.Title == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleOperation.Title(childComplexity), true
+							
+				case "SetTitleOperation.was":
+								if e.complexity.SetTitleOperation.Was == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleOperation.Was(childComplexity), true
+							
+				
+			
+		
+			
+				case "SetTitlePayload.bug":
+								if e.complexity.SetTitlePayload.Bug == nil {
+									break
+								}
+								
+								return e.complexity.SetTitlePayload.Bug(childComplexity), true
+							
+				case "SetTitlePayload.clientMutationId":
+								if e.complexity.SetTitlePayload.ClientMutationID == nil {
+									break
+								}
+								
+								return e.complexity.SetTitlePayload.ClientMutationID(childComplexity), true
+							
+				case "SetTitlePayload.operation":
+								if e.complexity.SetTitlePayload.Operation == nil {
+									break
+								}
+								
+								return e.complexity.SetTitlePayload.Operation(childComplexity), true
+							
+				
+			
+		
+			
+				case "SetTitleTimelineItem.author":
+								if e.complexity.SetTitleTimelineItem.Author == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleTimelineItem.Author(childComplexity), true
+							
+				case "SetTitleTimelineItem.date":
+								if e.complexity.SetTitleTimelineItem.Date == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleTimelineItem.Date(childComplexity), true
+							
+				case "SetTitleTimelineItem.id":
+								if e.complexity.SetTitleTimelineItem.ID == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleTimelineItem.ID(childComplexity), true
+							
+				case "SetTitleTimelineItem.title":
+								if e.complexity.SetTitleTimelineItem.Title == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleTimelineItem.Title(childComplexity), true
+							
+				case "SetTitleTimelineItem.was":
+								if e.complexity.SetTitleTimelineItem.Was == nil {
+									break
+								}
+								
+								return e.complexity.SetTitleTimelineItem.Was(childComplexity), true
+							
+				
+			
+		
+			
+				case "TimelineItemConnection.edges":
+								if e.complexity.TimelineItemConnection.Edges == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemConnection.Edges(childComplexity), true
+							
+				case "TimelineItemConnection.nodes":
+								if e.complexity.TimelineItemConnection.Nodes == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemConnection.Nodes(childComplexity), true
+							
+				case "TimelineItemConnection.pageInfo":
+								if e.complexity.TimelineItemConnection.PageInfo == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemConnection.PageInfo(childComplexity), true
+							
+				case "TimelineItemConnection.totalCount":
+								if e.complexity.TimelineItemConnection.TotalCount == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemConnection.TotalCount(childComplexity), true
+							
+				
+			
+		
+			
+				case "TimelineItemEdge.cursor":
+								if e.complexity.TimelineItemEdge.Cursor == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemEdge.Cursor(childComplexity), true
+							
+				case "TimelineItemEdge.node":
+								if e.complexity.TimelineItemEdge.Node == nil {
+									break
+								}
+								
+								return e.complexity.TimelineItemEdge.Node(childComplexity), true
+							
+				
+			
+		
+			
+		
+			
+		
+			
+		
+			
+		
+			
+		
+			
+		
+		}
+		return 0, false
+	}
+
+	func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler {
+		rc := graphql.GetOperationContext(ctx)
+		ec := executionContext{rc, e}
+		inputUnmarshalMap := graphql.BuildUnmarshalerMap(
+					ec.unmarshalInputAddCommentAndCloseBugInput,
+					ec.unmarshalInputAddCommentAndReopenBugInput,
+					ec.unmarshalInputAddCommentInput,
+					ec.unmarshalInputChangeLabelInput,
+					ec.unmarshalInputCloseBugInput,
+					ec.unmarshalInputEditCommentInput,
+					ec.unmarshalInputNewBugInput,
+					ec.unmarshalInputOpenBugInput,
+					ec.unmarshalInputSetTitleInput,
+		)
+		first := true
+
+		switch rc.Operation.Operation { case ast.Query:
+			return func(ctx context.Context) *graphql.Response {
+				if !first { return nil }
+				first = false
+				ctx = graphql.WithUnmarshalerMap(ctx, inputUnmarshalMap)
+				data := ec._Query(ctx, rc.Operation.SelectionSet)
+				var buf bytes.Buffer
+				data.MarshalGQL(&buf)
+
+				return &graphql.Response{
+					Data:       buf.Bytes(),
+				}
+			}
+		 case ast.Mutation:
+			return func(ctx context.Context) *graphql.Response {
+				if !first { return nil }
+				first = false
+				ctx = graphql.WithUnmarshalerMap(ctx, inputUnmarshalMap)
+				data := ec._Mutation(ctx, rc.Operation.SelectionSet)
+				var buf bytes.Buffer
+				data.MarshalGQL(&buf)
+
+				return &graphql.Response{
+					Data:       buf.Bytes(),
+				}
+			}
+		
+		default:
+			return graphql.OneShot(graphql.ErrorResponse(ctx, "unsupported GraphQL operation"))
+		}
 	}
 
-	Mutation struct {
-		AddComment          func(childComplexity int, input models.AddCommentInput) int
-		AddCommentAndClose  func(childComplexity int, input models.AddCommentAndCloseBugInput) int
-		AddCommentAndReopen func(childComplexity int, input models.AddCommentAndReopenBugInput) int
-		ChangeLabels        func(childComplexity int, input *models.ChangeLabelInput) int
-		CloseBug            func(childComplexity int, input models.CloseBugInput) int
-		EditComment         func(childComplexity int, input models.EditCommentInput) int
-		NewBug              func(childComplexity int, input models.NewBugInput) int
-		OpenBug             func(childComplexity int, input models.OpenBugInput) int
-		SetTitle            func(childComplexity int, input models.SetTitleInput) int
+	type executionContext struct {
+		*graphql.OperationContext
+		*executableSchema
 	}
 
-	NewBugPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
+	func (ec *executionContext) introspectSchema() (*introspection.Schema, error) {
+		if ec.DisableIntrospection {
+			return nil, errors.New("introspection disabled")
+		}
+		return introspection.WrapSchema(parsedSchema), nil
 	}
 
-	OpenBugPayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
+	func (ec *executionContext) introspectType(name string) (*introspection.Type, error) {
+		if ec.DisableIntrospection {
+			return nil, errors.New("introspection disabled")
+		}
+		return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]), nil
 	}
 
-	OperationConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
-	}
+	
 
-	OperationEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
-	}
+	var sources = []*ast.Source{
+		{Name: "../schema/bug.graphql", Input: `"""Represents a comment on a bug."""
+type Comment implements Authored {
+  """The author of this comment."""
+  author: Identity!
 
-	PageInfo struct {
-		EndCursor       func(childComplexity int) int
-		HasNextPage     func(childComplexity int) int
-		HasPreviousPage func(childComplexity int) int
-		StartCursor     func(childComplexity int) int
-	}
+  """The message of this comment."""
+  message: String!
 
-	Query struct {
-		Repository func(childComplexity int, ref *string) int
-	}
+  """All media's hash referenced in this comment"""
+  files: [Hash!]!
+}
 
-	Repository struct {
-		AllBugs       func(childComplexity int, after *string, before *string, first *int, last *int, query *string) int
-		AllIdentities func(childComplexity int, after *string, before *string, first *int, last *int) int
-		Bug           func(childComplexity int, prefix string) int
-		Identity      func(childComplexity int, prefix string) int
-		Name          func(childComplexity int) int
-		UserIdentity  func(childComplexity int) int
-		ValidLabels   func(childComplexity int, after *string, before *string, first *int, last *int) int
-	}
+type CommentConnection {
+  edges: [CommentEdge!]!
+  nodes: [Comment!]!
+  pageInfo: PageInfo!
+  totalCount: Int!
+}
 
-	SetStatusOperation struct {
-		Author func(childComplexity int) int
-		Date   func(childComplexity int) int
-		ID     func(childComplexity int) int
-		Status func(childComplexity int) int
-	}
+type CommentEdge {
+  cursor: String!
+  node: Comment!
+}
 
-	SetStatusTimelineItem struct {
-		Author func(childComplexity int) int
-		Date   func(childComplexity int) int
-		ID     func(childComplexity int) int
-		Status func(childComplexity int) int
-	}
+enum Status {
+  OPEN
+  CLOSED
+}
 
-	SetTitleOperation struct {
-		Author func(childComplexity int) int
-		Date   func(childComplexity int) int
-		ID     func(childComplexity int) int
-		Title  func(childComplexity int) int
-		Was    func(childComplexity int) int
-	}
+type Bug implements Authored {
+  """The identifier for this bug"""
+  id: String!
+  """The human version (truncated) identifier for this bug"""
+  humanId: String!
+  status: Status!
+  title: String!
+  labels: [Label!]!
+  author: Identity!
+  createdAt: Time!
+  lastEdit: Time!
 
-	SetTitlePayload struct {
-		Bug              func(childComplexity int) int
-		ClientMutationID func(childComplexity int) int
-		Operation        func(childComplexity int) int
-	}
+  """The actors of the bug. Actors are Identity that have interacted with the bug."""
+  actors(
+    """Returns the elements in the list that come after the specified cursor."""
+    after: String
+    """Returns the elements in the list that come before the specified cursor."""
+    before: String
+    """Returns the first _n_ elements from the list."""
+    first: Int
+    """Returns the last _n_ elements from the list."""
+    last: Int
+  ): IdentityConnection!
 
-	SetTitleTimelineItem struct {
-		Author func(childComplexity int) int
-		Date   func(childComplexity int) int
-		ID     func(childComplexity int) int
-		Title  func(childComplexity int) int
-		Was    func(childComplexity int) int
-	}
+  """The participants of the bug. Participants are Identity that have created or
+  added a comment on the bug."""
+  participants(
+    """Returns the elements in the list that come after the specified cursor."""
+    after: String
+    """Returns the elements in the list that come before the specified cursor."""
+    before: String
+    """Returns the first _n_ elements from the list."""
+    first: Int
+    """Returns the last _n_ elements from the list."""
+    last: Int
+  ): IdentityConnection!
 
-	TimelineItemConnection struct {
-		Edges      func(childComplexity int) int
-		Nodes      func(childComplexity int) int
-		PageInfo   func(childComplexity int) int
-		TotalCount func(childComplexity int) int
-	}
+  comments(
+    """Returns the elements in the list that come after the specified cursor."""
+    after: String
+    """Returns the elements in the list that come before the specified cursor."""
+    before: String
+    """Returns the first _n_ elements from the list."""
+    first: Int
+    """Returns the last _n_ elements from the list."""
+    last: Int
+  ): CommentConnection!
 
-	TimelineItemEdge struct {
-		Cursor func(childComplexity int) int
-		Node   func(childComplexity int) int
-	}
-}
+  timeline(
+    """Returns the elements in the list that come after the specified cursor."""
+    after: String
+    """Returns the elements in the list that come before the specified cursor."""
+    before: String
+    """Returns the first _n_ elements from the list."""
+    first: Int
+    """Returns the last _n_ elements from the list."""
+    last: Int
+  ): TimelineItemConnection!
 
-type AddCommentOperationResolver interface {
-	ID(ctx context.Context, obj *bug.AddCommentOperation) (string, error)
-	Author(ctx context.Context, obj *bug.AddCommentOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.AddCommentOperation) (*time.Time, error)
+  operations(
+    """Returns the elements in the list that come after the specified cursor."""
+    after: String
+    """Returns the elements in the list that come before the specified cursor."""
+    before: String
+    """Returns the first _n_ elements from the list."""
+    first: Int
+    """Returns the last _n_ elements from the list."""
+    last: Int
+  ): OperationConnection!
 }
-type AddCommentTimelineItemResolver interface {
-	ID(ctx context.Context, obj *bug.AddCommentTimelineItem) (string, error)
-	Author(ctx context.Context, obj *bug.AddCommentTimelineItem) (models.IdentityWrapper, error)
 
-	CreatedAt(ctx context.Context, obj *bug.AddCommentTimelineItem) (*time.Time, error)
-	LastEdit(ctx context.Context, obj *bug.AddCommentTimelineItem) (*time.Time, error)
+"""The connection type for Bug."""
+type BugConnection {
+  """A list of edges."""
+  edges: [BugEdge!]!
+  nodes: [Bug!]!
+  """Information to aid in pagination."""
+  pageInfo: PageInfo!
+  """Identifies the total count of items in the connection."""
+  totalCount: Int!
 }
-type BugResolver interface {
-	ID(ctx context.Context, obj models.BugWrapper) (string, error)
-	HumanID(ctx context.Context, obj models.BugWrapper) (string, error)
-	Status(ctx context.Context, obj models.BugWrapper) (models.Status, error)
 
-	Actors(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.IdentityConnection, error)
-	Participants(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.IdentityConnection, error)
-	Comments(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.CommentConnection, error)
-	Timeline(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.TimelineItemConnection, error)
-	Operations(ctx context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.OperationConnection, error)
-}
-type ColorResolver interface {
-	R(ctx context.Context, obj *color.RGBA) (int, error)
-	G(ctx context.Context, obj *color.RGBA) (int, error)
-	B(ctx context.Context, obj *color.RGBA) (int, error)
-}
-type CommentResolver interface {
-	Author(ctx context.Context, obj *bug.Comment) (models.IdentityWrapper, error)
-}
-type CommentHistoryStepResolver interface {
-	Date(ctx context.Context, obj *bug.CommentHistoryStep) (*time.Time, error)
+"""An edge in a connection."""
+type BugEdge {
+  """A cursor for use in pagination."""
+  cursor: String!
+  """The item at the end of the edge."""
+  node: Bug!
 }
-type CreateOperationResolver interface {
-	ID(ctx context.Context, obj *bug.CreateOperation) (string, error)
-	Author(ctx context.Context, obj *bug.CreateOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.CreateOperation) (*time.Time, error)
+`, BuiltIn: false},
+		{Name: "../schema/identity.graphql", Input: `"""Represents an identity"""
+type Identity {
+    """The identifier for this identity"""
+    id: String!
+    """The human version (truncated) identifier for this identity"""
+    humanId: String!
+    """The name of the person, if known."""
+    name: String
+    """The email of the person, if known."""
+    email: String
+    """The login of the person, if known."""
+    login: String
+    """A non-empty string to display, representing the identity, based on the non-empty values."""
+    displayName: String!
+    """An url to an avatar"""
+    avatarUrl: String
+    """isProtected is true if the chain of git commits started to be signed.
+    If that's the case, only signed commit with a valid key for this identity can be added."""
+    isProtected: Boolean!
 }
-type CreateTimelineItemResolver interface {
-	ID(ctx context.Context, obj *bug.CreateTimelineItem) (string, error)
-	Author(ctx context.Context, obj *bug.CreateTimelineItem) (models.IdentityWrapper, error)
 
-	CreatedAt(ctx context.Context, obj *bug.CreateTimelineItem) (*time.Time, error)
-	LastEdit(ctx context.Context, obj *bug.CreateTimelineItem) (*time.Time, error)
-}
-type EditCommentOperationResolver interface {
-	ID(ctx context.Context, obj *bug.EditCommentOperation) (string, error)
-	Author(ctx context.Context, obj *bug.EditCommentOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.EditCommentOperation) (*time.Time, error)
-	Target(ctx context.Context, obj *bug.EditCommentOperation) (string, error)
-}
-type IdentityResolver interface {
-	ID(ctx context.Context, obj models.IdentityWrapper) (string, error)
-	HumanID(ctx context.Context, obj models.IdentityWrapper) (string, error)
-}
-type LabelResolver interface {
-	Name(ctx context.Context, obj *bug.Label) (string, error)
-	Color(ctx context.Context, obj *bug.Label) (*color.RGBA, error)
-}
-type LabelChangeOperationResolver interface {
-	ID(ctx context.Context, obj *bug.LabelChangeOperation) (string, error)
-	Author(ctx context.Context, obj *bug.LabelChangeOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.LabelChangeOperation) (*time.Time, error)
-}
-type LabelChangeResultResolver interface {
-	Status(ctx context.Context, obj *bug.LabelChangeResult) (models.LabelChangeStatus, error)
-}
-type LabelChangeTimelineItemResolver interface {
-	ID(ctx context.Context, obj *bug.LabelChangeTimelineItem) (string, error)
-	Author(ctx context.Context, obj *bug.LabelChangeTimelineItem) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.LabelChangeTimelineItem) (*time.Time, error)
-}
-type MutationResolver interface {
-	NewBug(ctx context.Context, input models.NewBugInput) (*models.NewBugPayload, error)
-	AddComment(ctx context.Context, input models.AddCommentInput) (*models.AddCommentPayload, error)
-	AddCommentAndClose(ctx context.Context, input models.AddCommentAndCloseBugInput) (*models.AddCommentAndCloseBugPayload, error)
-	AddCommentAndReopen(ctx context.Context, input models.AddCommentAndReopenBugInput) (*models.AddCommentAndReopenBugPayload, error)
-	EditComment(ctx context.Context, input models.EditCommentInput) (*models.EditCommentPayload, error)
-	ChangeLabels(ctx context.Context, input *models.ChangeLabelInput) (*models.ChangeLabelPayload, error)
-	OpenBug(ctx context.Context, input models.OpenBugInput) (*models.OpenBugPayload, error)
-	CloseBug(ctx context.Context, input models.CloseBugInput) (*models.CloseBugPayload, error)
-	SetTitle(ctx context.Context, input models.SetTitleInput) (*models.SetTitlePayload, error)
-}
-type QueryResolver interface {
-	Repository(ctx context.Context, ref *string) (*models.Repository, error)
+type IdentityConnection {
+    edges: [IdentityEdge!]!
+    nodes: [Identity!]!
+    pageInfo: PageInfo!
+    totalCount: Int!
 }
-type RepositoryResolver interface {
-	Name(ctx context.Context, obj *models.Repository) (*string, error)
-	AllBugs(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int, query *string) (*models.BugConnection, error)
-	Bug(ctx context.Context, obj *models.Repository, prefix string) (models.BugWrapper, error)
-	AllIdentities(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int) (*models.IdentityConnection, error)
-	Identity(ctx context.Context, obj *models.Repository, prefix string) (models.IdentityWrapper, error)
-	UserIdentity(ctx context.Context, obj *models.Repository) (models.IdentityWrapper, error)
-	ValidLabels(ctx context.Context, obj *models.Repository, after *string, before *string, first *int, last *int) (*models.LabelConnection, error)
+
+type IdentityEdge {
+    cursor: String!
+    node: Identity!
+}`, BuiltIn: false},
+		{Name: "../schema/label.graphql", Input: `"""Label for a bug."""
+type Label {
+    """The name of the label."""
+    name: String!
+    """Color of the label."""
+    color: Color!
 }
-type SetStatusOperationResolver interface {
-	ID(ctx context.Context, obj *bug.SetStatusOperation) (string, error)
-	Author(ctx context.Context, obj *bug.SetStatusOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.SetStatusOperation) (*time.Time, error)
-	Status(ctx context.Context, obj *bug.SetStatusOperation) (models.Status, error)
+
+type LabelConnection {
+    edges: [LabelEdge!]!
+    nodes: [Label!]!
+    pageInfo: PageInfo!
+    totalCount: Int!
 }
-type SetStatusTimelineItemResolver interface {
-	ID(ctx context.Context, obj *bug.SetStatusTimelineItem) (string, error)
-	Author(ctx context.Context, obj *bug.SetStatusTimelineItem) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.SetStatusTimelineItem) (*time.Time, error)
-	Status(ctx context.Context, obj *bug.SetStatusTimelineItem) (models.Status, error)
+
+type LabelEdge {
+    cursor: String!
+    node: Label!
+}`, BuiltIn: false},
+		{Name: "../schema/mutations.graphql", Input: `input NewBugInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The title of the new bug."""
+    title: String!
+    """The first message of the new bug."""
+    message: String!
+    """The collection of file's hash required for the first message."""
+    files: [Hash!]
 }
-type SetTitleOperationResolver interface {
-	ID(ctx context.Context, obj *bug.SetTitleOperation) (string, error)
-	Author(ctx context.Context, obj *bug.SetTitleOperation) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.SetTitleOperation) (*time.Time, error)
+
+type NewBugPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The created bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: CreateOperation!
 }
-type SetTitleTimelineItemResolver interface {
-	ID(ctx context.Context, obj *bug.SetTitleTimelineItem) (string, error)
-	Author(ctx context.Context, obj *bug.SetTitleTimelineItem) (models.IdentityWrapper, error)
-	Date(ctx context.Context, obj *bug.SetTitleTimelineItem) (*time.Time, error)
+
+input AddCommentInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The message to be added to the bug."""
+    message: String!
+    """The collection of file's hash required for the first message."""
+    files: [Hash!]
 }
 
-type executableSchema struct {
-	resolvers  ResolverRoot
-	directives DirectiveRoot
-	complexity ComplexityRoot
+type AddCommentPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: AddCommentOperation!
 }
 
-func (e *executableSchema) Schema() *ast.Schema {
-	return parsedSchema
+input AddCommentAndCloseBugInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The message to be added to the bug."""
+    message: String!
+    """The collection of file's hash required for the first message."""
+    files: [Hash!]
 }
 
-func (e *executableSchema) Complexity(typeName, field string, childComplexity int, rawArgs map[string]interface{}) (int, bool) {
-	ec := executionContext{nil, e}
-	_ = ec
-	switch typeName + "." + field {
+type AddCommentAndCloseBugPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting AddComment operation."""
+    commentOperation: AddCommentOperation!
+    """The resulting SetStatusOperation."""
+    statusOperation: SetStatusOperation!
+}
 
-	case "AddCommentAndCloseBugPayload.bug":
-		if e.complexity.AddCommentAndCloseBugPayload.Bug == nil {
-			break
-		}
+input AddCommentAndReopenBugInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The message to be added to the bug."""
+    message: String!
+    """The collection of file's hash required for the first message."""
+    files: [Hash!]
+}
 
-		return e.complexity.AddCommentAndCloseBugPayload.Bug(childComplexity), true
+type AddCommentAndReopenBugPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting AddComment operation."""
+    commentOperation: AddCommentOperation!
+    """The resulting SetStatusOperation."""
+    statusOperation: SetStatusOperation!
+}
 
-	case "AddCommentAndCloseBugPayload.clientMutationId":
-		if e.complexity.AddCommentAndCloseBugPayload.ClientMutationID == nil {
-			break
-		}
+input EditCommentInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The ID of the comment to be changed."""
+    target: String!
+    """The new message to be set."""
+    message: String!
+    """The collection of file's hash required for the first message."""
+    files: [Hash!]
+}
 
-		return e.complexity.AddCommentAndCloseBugPayload.ClientMutationID(childComplexity), true
+type EditCommentPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: EditCommentOperation!
+}
 
-	case "AddCommentAndCloseBugPayload.commentOperation":
-		if e.complexity.AddCommentAndCloseBugPayload.CommentOperation == nil {
-			break
-		}
+input ChangeLabelInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The list of label to add."""
+    added: [String!]
+    """The list of label to remove."""
+    Removed: [String!]
+}
 
-		return e.complexity.AddCommentAndCloseBugPayload.CommentOperation(childComplexity), true
+enum LabelChangeStatus {
+    ADDED
+    REMOVED
+    DUPLICATE_IN_OP
+    ALREADY_EXIST
+    DOESNT_EXIST
+}
 
-	case "AddCommentAndCloseBugPayload.statusOperation":
-		if e.complexity.AddCommentAndCloseBugPayload.StatusOperation == nil {
-			break
-		}
+type LabelChangeResult {
+    """The source label."""
+    label: Label!
+    """The effect this label had."""
+    status: LabelChangeStatus!
+}
 
-		return e.complexity.AddCommentAndCloseBugPayload.StatusOperation(childComplexity), true
+type ChangeLabelPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: LabelChangeOperation!
+    """The effect each source label had."""
+    results: [LabelChangeResult]!
+}
 
-	case "AddCommentAndReopenBugPayload.bug":
-		if e.complexity.AddCommentAndReopenBugPayload.Bug == nil {
-			break
-		}
+input OpenBugInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+}
 
-		return e.complexity.AddCommentAndReopenBugPayload.Bug(childComplexity), true
+type OpenBugPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: SetStatusOperation!
+}
 
-	case "AddCommentAndReopenBugPayload.clientMutationId":
-		if e.complexity.AddCommentAndReopenBugPayload.ClientMutationID == nil {
-			break
-		}
+input CloseBugInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+}
 
-		return e.complexity.AddCommentAndReopenBugPayload.ClientMutationID(childComplexity), true
+type CloseBugPayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation."""
+    operation: SetStatusOperation!
+}
 
-	case "AddCommentAndReopenBugPayload.commentOperation":
-		if e.complexity.AddCommentAndReopenBugPayload.CommentOperation == nil {
-			break
-		}
+input SetTitleInput {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The name of the repository. If not set, the default repository is used."""
+    repoRef: String
+    """The bug ID's prefix."""
+    prefix: String!
+    """The new title."""
+    title: String!
+}
 
-		return e.complexity.AddCommentAndReopenBugPayload.CommentOperation(childComplexity), true
+type SetTitlePayload {
+    """A unique identifier for the client performing the mutation."""
+    clientMutationId: String
+    """The affected bug."""
+    bug: Bug!
+    """The resulting operation"""
+    operation: SetTitleOperation!
+}
+`, BuiltIn: false},
+		{Name: "../schema/operations.graphql", Input: `"""An operation applied to a bug."""
+interface Operation {
+    """The identifier of the operation"""
+    id: String!
+    """The operations author."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
+}
 
-	case "AddCommentAndReopenBugPayload.statusOperation":
-		if e.complexity.AddCommentAndReopenBugPayload.StatusOperation == nil {
-			break
-		}
+# Connection
 
-		return e.complexity.AddCommentAndReopenBugPayload.StatusOperation(childComplexity), true
+"""The connection type for an Operation"""
+type OperationConnection {
+    edges: [OperationEdge!]!
+    nodes: [Operation!]!
+    pageInfo: PageInfo!
+    totalCount: Int!
+}
 
-	case "AddCommentOperation.author":
-		if e.complexity.AddCommentOperation.Author == nil {
-			break
-		}
+"""Represent an Operation"""
+type OperationEdge {
+    cursor: String!
+    node: Operation!
+}
 
-		return e.complexity.AddCommentOperation.Author(childComplexity), true
+# Operations
 
-	case "AddCommentOperation.date":
-		if e.complexity.AddCommentOperation.Date == nil {
-			break
-		}
+type CreateOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentOperation.Date(childComplexity), true
+    title: String!
+    message: String!
+    files: [Hash!]!
+}
 
-	case "AddCommentOperation.files":
-		if e.complexity.AddCommentOperation.Files == nil {
-			break
-		}
+type SetTitleOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentOperation.Files(childComplexity), true
+    title: String!
+    was: String!
+}
 
-	case "AddCommentOperation.id":
-		if e.complexity.AddCommentOperation.ID == nil {
-			break
-		}
+type AddCommentOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentOperation.ID(childComplexity), true
+    message: String!
+    files: [Hash!]!
+}
 
-	case "AddCommentOperation.message":
-		if e.complexity.AddCommentOperation.Message == nil {
-			break
-		}
+type EditCommentOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentOperation.Message(childComplexity), true
+    target: String!
+    message: String!
+    files: [Hash!]!
+}
 
-	case "AddCommentPayload.bug":
-		if e.complexity.AddCommentPayload.Bug == nil {
-			break
-		}
+type SetStatusOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentPayload.Bug(childComplexity), true
+    status: Status!
+}
 
-	case "AddCommentPayload.clientMutationId":
-		if e.complexity.AddCommentPayload.ClientMutationID == nil {
-			break
-		}
+type LabelChangeOperation implements Operation & Authored {
+    """The identifier of the operation"""
+    id: String!
+    """The author of this object."""
+    author: Identity!
+    """The datetime when this operation was issued."""
+    date: Time!
 
-		return e.complexity.AddCommentPayload.ClientMutationID(childComplexity), true
+    added: [Label!]!
+    removed: [Label!]!
+}
+`, BuiltIn: false},
+		{Name: "../schema/repository.graphql", Input: `
+type Repository {
+    """The name of the repository"""
+    name: String
 
-	case "AddCommentPayload.operation":
-		if e.complexity.AddCommentPayload.Operation == nil {
-			break
-		}
+    """All the bugs"""
+    allBugs(
+        """Returns the elements in the list that come after the specified cursor."""
+        after: String
+        """Returns the elements in the list that come before the specified cursor."""
+        before: String
+        """Returns the first _n_ elements from the list."""
+        first: Int
+        """Returns the last _n_ elements from the list."""
+        last: Int
+        """A query to select and order bugs."""
+        query: String
+    ): BugConnection!
 
-		return e.complexity.AddCommentPayload.Operation(childComplexity), true
-
-	case "AddCommentTimelineItem.author":
-		if e.complexity.AddCommentTimelineItem.Author == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.Author(childComplexity), true
-
-	case "AddCommentTimelineItem.createdAt":
-		if e.complexity.AddCommentTimelineItem.CreatedAt == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.CreatedAt(childComplexity), true
-
-	case "AddCommentTimelineItem.edited":
-		if e.complexity.AddCommentTimelineItem.Edited == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.Edited(childComplexity), true
-
-	case "AddCommentTimelineItem.files":
-		if e.complexity.AddCommentTimelineItem.Files == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.Files(childComplexity), true
-
-	case "AddCommentTimelineItem.history":
-		if e.complexity.AddCommentTimelineItem.History == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.History(childComplexity), true
-
-	case "AddCommentTimelineItem.id":
-		if e.complexity.AddCommentTimelineItem.ID == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.ID(childComplexity), true
-
-	case "AddCommentTimelineItem.lastEdit":
-		if e.complexity.AddCommentTimelineItem.LastEdit == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.LastEdit(childComplexity), true
-
-	case "AddCommentTimelineItem.message":
-		if e.complexity.AddCommentTimelineItem.Message == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.Message(childComplexity), true
-
-	case "AddCommentTimelineItem.messageIsEmpty":
-		if e.complexity.AddCommentTimelineItem.MessageIsEmpty == nil {
-			break
-		}
-
-		return e.complexity.AddCommentTimelineItem.MessageIsEmpty(childComplexity), true
-
-	case "Bug.actors":
-		if e.complexity.Bug.Actors == nil {
-			break
-		}
-
-		args, err := ec.field_Bug_actors_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Bug.Actors(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Bug.author":
-		if e.complexity.Bug.Author == nil {
-			break
-		}
-
-		return e.complexity.Bug.Author(childComplexity), true
-
-	case "Bug.comments":
-		if e.complexity.Bug.Comments == nil {
-			break
-		}
-
-		args, err := ec.field_Bug_comments_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Bug.Comments(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Bug.createdAt":
-		if e.complexity.Bug.CreatedAt == nil {
-			break
-		}
-
-		return e.complexity.Bug.CreatedAt(childComplexity), true
-
-	case "Bug.humanId":
-		if e.complexity.Bug.HumanID == nil {
-			break
-		}
-
-		return e.complexity.Bug.HumanID(childComplexity), true
-
-	case "Bug.id":
-		if e.complexity.Bug.ID == nil {
-			break
-		}
-
-		return e.complexity.Bug.ID(childComplexity), true
-
-	case "Bug.labels":
-		if e.complexity.Bug.Labels == nil {
-			break
-		}
-
-		return e.complexity.Bug.Labels(childComplexity), true
-
-	case "Bug.lastEdit":
-		if e.complexity.Bug.LastEdit == nil {
-			break
-		}
-
-		return e.complexity.Bug.LastEdit(childComplexity), true
-
-	case "Bug.operations":
-		if e.complexity.Bug.Operations == nil {
-			break
-		}
-
-		args, err := ec.field_Bug_operations_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Bug.Operations(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Bug.participants":
-		if e.complexity.Bug.Participants == nil {
-			break
-		}
-
-		args, err := ec.field_Bug_participants_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Bug.Participants(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Bug.status":
-		if e.complexity.Bug.Status == nil {
-			break
-		}
-
-		return e.complexity.Bug.Status(childComplexity), true
-
-	case "Bug.timeline":
-		if e.complexity.Bug.Timeline == nil {
-			break
-		}
-
-		args, err := ec.field_Bug_timeline_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Bug.Timeline(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Bug.title":
-		if e.complexity.Bug.Title == nil {
-			break
-		}
-
-		return e.complexity.Bug.Title(childComplexity), true
-
-	case "BugConnection.edges":
-		if e.complexity.BugConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.BugConnection.Edges(childComplexity), true
-
-	case "BugConnection.nodes":
-		if e.complexity.BugConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.BugConnection.Nodes(childComplexity), true
-
-	case "BugConnection.pageInfo":
-		if e.complexity.BugConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.BugConnection.PageInfo(childComplexity), true
-
-	case "BugConnection.totalCount":
-		if e.complexity.BugConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.BugConnection.TotalCount(childComplexity), true
-
-	case "BugEdge.cursor":
-		if e.complexity.BugEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.BugEdge.Cursor(childComplexity), true
-
-	case "BugEdge.node":
-		if e.complexity.BugEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.BugEdge.Node(childComplexity), true
-
-	case "ChangeLabelPayload.bug":
-		if e.complexity.ChangeLabelPayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.ChangeLabelPayload.Bug(childComplexity), true
-
-	case "ChangeLabelPayload.clientMutationId":
-		if e.complexity.ChangeLabelPayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.ChangeLabelPayload.ClientMutationID(childComplexity), true
-
-	case "ChangeLabelPayload.operation":
-		if e.complexity.ChangeLabelPayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.ChangeLabelPayload.Operation(childComplexity), true
-
-	case "ChangeLabelPayload.results":
-		if e.complexity.ChangeLabelPayload.Results == nil {
-			break
-		}
-
-		return e.complexity.ChangeLabelPayload.Results(childComplexity), true
-
-	case "CloseBugPayload.bug":
-		if e.complexity.CloseBugPayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.CloseBugPayload.Bug(childComplexity), true
-
-	case "CloseBugPayload.clientMutationId":
-		if e.complexity.CloseBugPayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.CloseBugPayload.ClientMutationID(childComplexity), true
-
-	case "CloseBugPayload.operation":
-		if e.complexity.CloseBugPayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.CloseBugPayload.Operation(childComplexity), true
-
-	case "Color.B":
-		if e.complexity.Color.B == nil {
-			break
-		}
-
-		return e.complexity.Color.B(childComplexity), true
-
-	case "Color.G":
-		if e.complexity.Color.G == nil {
-			break
-		}
-
-		return e.complexity.Color.G(childComplexity), true
-
-	case "Color.R":
-		if e.complexity.Color.R == nil {
-			break
-		}
-
-		return e.complexity.Color.R(childComplexity), true
-
-	case "Comment.author":
-		if e.complexity.Comment.Author == nil {
-			break
-		}
-
-		return e.complexity.Comment.Author(childComplexity), true
-
-	case "Comment.files":
-		if e.complexity.Comment.Files == nil {
-			break
-		}
-
-		return e.complexity.Comment.Files(childComplexity), true
-
-	case "Comment.message":
-		if e.complexity.Comment.Message == nil {
-			break
-		}
-
-		return e.complexity.Comment.Message(childComplexity), true
-
-	case "CommentConnection.edges":
-		if e.complexity.CommentConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.CommentConnection.Edges(childComplexity), true
-
-	case "CommentConnection.nodes":
-		if e.complexity.CommentConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.CommentConnection.Nodes(childComplexity), true
-
-	case "CommentConnection.pageInfo":
-		if e.complexity.CommentConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.CommentConnection.PageInfo(childComplexity), true
-
-	case "CommentConnection.totalCount":
-		if e.complexity.CommentConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.CommentConnection.TotalCount(childComplexity), true
-
-	case "CommentEdge.cursor":
-		if e.complexity.CommentEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.CommentEdge.Cursor(childComplexity), true
-
-	case "CommentEdge.node":
-		if e.complexity.CommentEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.CommentEdge.Node(childComplexity), true
-
-	case "CommentHistoryStep.date":
-		if e.complexity.CommentHistoryStep.Date == nil {
-			break
-		}
-
-		return e.complexity.CommentHistoryStep.Date(childComplexity), true
-
-	case "CommentHistoryStep.message":
-		if e.complexity.CommentHistoryStep.Message == nil {
-			break
-		}
-
-		return e.complexity.CommentHistoryStep.Message(childComplexity), true
-
-	case "CreateOperation.author":
-		if e.complexity.CreateOperation.Author == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.Author(childComplexity), true
-
-	case "CreateOperation.date":
-		if e.complexity.CreateOperation.Date == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.Date(childComplexity), true
-
-	case "CreateOperation.files":
-		if e.complexity.CreateOperation.Files == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.Files(childComplexity), true
-
-	case "CreateOperation.id":
-		if e.complexity.CreateOperation.ID == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.ID(childComplexity), true
-
-	case "CreateOperation.message":
-		if e.complexity.CreateOperation.Message == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.Message(childComplexity), true
-
-	case "CreateOperation.title":
-		if e.complexity.CreateOperation.Title == nil {
-			break
-		}
-
-		return e.complexity.CreateOperation.Title(childComplexity), true
-
-	case "CreateTimelineItem.author":
-		if e.complexity.CreateTimelineItem.Author == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.Author(childComplexity), true
-
-	case "CreateTimelineItem.createdAt":
-		if e.complexity.CreateTimelineItem.CreatedAt == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.CreatedAt(childComplexity), true
-
-	case "CreateTimelineItem.edited":
-		if e.complexity.CreateTimelineItem.Edited == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.Edited(childComplexity), true
-
-	case "CreateTimelineItem.files":
-		if e.complexity.CreateTimelineItem.Files == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.Files(childComplexity), true
-
-	case "CreateTimelineItem.history":
-		if e.complexity.CreateTimelineItem.History == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.History(childComplexity), true
-
-	case "CreateTimelineItem.id":
-		if e.complexity.CreateTimelineItem.ID == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.ID(childComplexity), true
-
-	case "CreateTimelineItem.lastEdit":
-		if e.complexity.CreateTimelineItem.LastEdit == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.LastEdit(childComplexity), true
-
-	case "CreateTimelineItem.message":
-		if e.complexity.CreateTimelineItem.Message == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.Message(childComplexity), true
-
-	case "CreateTimelineItem.messageIsEmpty":
-		if e.complexity.CreateTimelineItem.MessageIsEmpty == nil {
-			break
-		}
-
-		return e.complexity.CreateTimelineItem.MessageIsEmpty(childComplexity), true
-
-	case "EditCommentOperation.author":
-		if e.complexity.EditCommentOperation.Author == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.Author(childComplexity), true
-
-	case "EditCommentOperation.date":
-		if e.complexity.EditCommentOperation.Date == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.Date(childComplexity), true
-
-	case "EditCommentOperation.files":
-		if e.complexity.EditCommentOperation.Files == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.Files(childComplexity), true
-
-	case "EditCommentOperation.id":
-		if e.complexity.EditCommentOperation.ID == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.ID(childComplexity), true
-
-	case "EditCommentOperation.message":
-		if e.complexity.EditCommentOperation.Message == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.Message(childComplexity), true
-
-	case "EditCommentOperation.target":
-		if e.complexity.EditCommentOperation.Target == nil {
-			break
-		}
-
-		return e.complexity.EditCommentOperation.Target(childComplexity), true
-
-	case "EditCommentPayload.bug":
-		if e.complexity.EditCommentPayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.EditCommentPayload.Bug(childComplexity), true
-
-	case "EditCommentPayload.clientMutationId":
-		if e.complexity.EditCommentPayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.EditCommentPayload.ClientMutationID(childComplexity), true
-
-	case "EditCommentPayload.operation":
-		if e.complexity.EditCommentPayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.EditCommentPayload.Operation(childComplexity), true
-
-	case "Identity.avatarUrl":
-		if e.complexity.Identity.AvatarUrl == nil {
-			break
-		}
-
-		return e.complexity.Identity.AvatarUrl(childComplexity), true
-
-	case "Identity.displayName":
-		if e.complexity.Identity.DisplayName == nil {
-			break
-		}
-
-		return e.complexity.Identity.DisplayName(childComplexity), true
-
-	case "Identity.email":
-		if e.complexity.Identity.Email == nil {
-			break
-		}
-
-		return e.complexity.Identity.Email(childComplexity), true
-
-	case "Identity.humanId":
-		if e.complexity.Identity.HumanID == nil {
-			break
-		}
-
-		return e.complexity.Identity.HumanID(childComplexity), true
-
-	case "Identity.id":
-		if e.complexity.Identity.ID == nil {
-			break
-		}
-
-		return e.complexity.Identity.ID(childComplexity), true
-
-	case "Identity.isProtected":
-		if e.complexity.Identity.IsProtected == nil {
-			break
-		}
-
-		return e.complexity.Identity.IsProtected(childComplexity), true
-
-	case "Identity.login":
-		if e.complexity.Identity.Login == nil {
-			break
-		}
-
-		return e.complexity.Identity.Login(childComplexity), true
-
-	case "Identity.name":
-		if e.complexity.Identity.Name == nil {
-			break
-		}
-
-		return e.complexity.Identity.Name(childComplexity), true
-
-	case "IdentityConnection.edges":
-		if e.complexity.IdentityConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.IdentityConnection.Edges(childComplexity), true
-
-	case "IdentityConnection.nodes":
-		if e.complexity.IdentityConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.IdentityConnection.Nodes(childComplexity), true
-
-	case "IdentityConnection.pageInfo":
-		if e.complexity.IdentityConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.IdentityConnection.PageInfo(childComplexity), true
-
-	case "IdentityConnection.totalCount":
-		if e.complexity.IdentityConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.IdentityConnection.TotalCount(childComplexity), true
-
-	case "IdentityEdge.cursor":
-		if e.complexity.IdentityEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.IdentityEdge.Cursor(childComplexity), true
-
-	case "IdentityEdge.node":
-		if e.complexity.IdentityEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.IdentityEdge.Node(childComplexity), true
-
-	case "Label.color":
-		if e.complexity.Label.Color == nil {
-			break
-		}
-
-		return e.complexity.Label.Color(childComplexity), true
-
-	case "Label.name":
-		if e.complexity.Label.Name == nil {
-			break
-		}
-
-		return e.complexity.Label.Name(childComplexity), true
-
-	case "LabelChangeOperation.added":
-		if e.complexity.LabelChangeOperation.Added == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeOperation.Added(childComplexity), true
-
-	case "LabelChangeOperation.author":
-		if e.complexity.LabelChangeOperation.Author == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeOperation.Author(childComplexity), true
-
-	case "LabelChangeOperation.date":
-		if e.complexity.LabelChangeOperation.Date == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeOperation.Date(childComplexity), true
-
-	case "LabelChangeOperation.id":
-		if e.complexity.LabelChangeOperation.ID == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeOperation.ID(childComplexity), true
-
-	case "LabelChangeOperation.removed":
-		if e.complexity.LabelChangeOperation.Removed == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeOperation.Removed(childComplexity), true
-
-	case "LabelChangeResult.label":
-		if e.complexity.LabelChangeResult.Label == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeResult.Label(childComplexity), true
-
-	case "LabelChangeResult.status":
-		if e.complexity.LabelChangeResult.Status == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeResult.Status(childComplexity), true
-
-	case "LabelChangeTimelineItem.added":
-		if e.complexity.LabelChangeTimelineItem.Added == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeTimelineItem.Added(childComplexity), true
-
-	case "LabelChangeTimelineItem.author":
-		if e.complexity.LabelChangeTimelineItem.Author == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeTimelineItem.Author(childComplexity), true
-
-	case "LabelChangeTimelineItem.date":
-		if e.complexity.LabelChangeTimelineItem.Date == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeTimelineItem.Date(childComplexity), true
-
-	case "LabelChangeTimelineItem.id":
-		if e.complexity.LabelChangeTimelineItem.ID == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeTimelineItem.ID(childComplexity), true
-
-	case "LabelChangeTimelineItem.removed":
-		if e.complexity.LabelChangeTimelineItem.Removed == nil {
-			break
-		}
-
-		return e.complexity.LabelChangeTimelineItem.Removed(childComplexity), true
-
-	case "LabelConnection.edges":
-		if e.complexity.LabelConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.LabelConnection.Edges(childComplexity), true
-
-	case "LabelConnection.nodes":
-		if e.complexity.LabelConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.LabelConnection.Nodes(childComplexity), true
-
-	case "LabelConnection.pageInfo":
-		if e.complexity.LabelConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.LabelConnection.PageInfo(childComplexity), true
-
-	case "LabelConnection.totalCount":
-		if e.complexity.LabelConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.LabelConnection.TotalCount(childComplexity), true
-
-	case "LabelEdge.cursor":
-		if e.complexity.LabelEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.LabelEdge.Cursor(childComplexity), true
-
-	case "LabelEdge.node":
-		if e.complexity.LabelEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.LabelEdge.Node(childComplexity), true
-
-	case "Mutation.addComment":
-		if e.complexity.Mutation.AddComment == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_addComment_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.AddComment(childComplexity, args["input"].(models.AddCommentInput)), true
-
-	case "Mutation.addCommentAndClose":
-		if e.complexity.Mutation.AddCommentAndClose == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_addCommentAndClose_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.AddCommentAndClose(childComplexity, args["input"].(models.AddCommentAndCloseBugInput)), true
-
-	case "Mutation.addCommentAndReopen":
-		if e.complexity.Mutation.AddCommentAndReopen == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_addCommentAndReopen_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.AddCommentAndReopen(childComplexity, args["input"].(models.AddCommentAndReopenBugInput)), true
-
-	case "Mutation.changeLabels":
-		if e.complexity.Mutation.ChangeLabels == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_changeLabels_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.ChangeLabels(childComplexity, args["input"].(*models.ChangeLabelInput)), true
-
-	case "Mutation.closeBug":
-		if e.complexity.Mutation.CloseBug == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_closeBug_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.CloseBug(childComplexity, args["input"].(models.CloseBugInput)), true
-
-	case "Mutation.editComment":
-		if e.complexity.Mutation.EditComment == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_editComment_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.EditComment(childComplexity, args["input"].(models.EditCommentInput)), true
-
-	case "Mutation.newBug":
-		if e.complexity.Mutation.NewBug == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_newBug_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.NewBug(childComplexity, args["input"].(models.NewBugInput)), true
-
-	case "Mutation.openBug":
-		if e.complexity.Mutation.OpenBug == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_openBug_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.OpenBug(childComplexity, args["input"].(models.OpenBugInput)), true
-
-	case "Mutation.setTitle":
-		if e.complexity.Mutation.SetTitle == nil {
-			break
-		}
-
-		args, err := ec.field_Mutation_setTitle_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Mutation.SetTitle(childComplexity, args["input"].(models.SetTitleInput)), true
-
-	case "NewBugPayload.bug":
-		if e.complexity.NewBugPayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.NewBugPayload.Bug(childComplexity), true
-
-	case "NewBugPayload.clientMutationId":
-		if e.complexity.NewBugPayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.NewBugPayload.ClientMutationID(childComplexity), true
-
-	case "NewBugPayload.operation":
-		if e.complexity.NewBugPayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.NewBugPayload.Operation(childComplexity), true
-
-	case "OpenBugPayload.bug":
-		if e.complexity.OpenBugPayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.OpenBugPayload.Bug(childComplexity), true
-
-	case "OpenBugPayload.clientMutationId":
-		if e.complexity.OpenBugPayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.OpenBugPayload.ClientMutationID(childComplexity), true
-
-	case "OpenBugPayload.operation":
-		if e.complexity.OpenBugPayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.OpenBugPayload.Operation(childComplexity), true
-
-	case "OperationConnection.edges":
-		if e.complexity.OperationConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.OperationConnection.Edges(childComplexity), true
-
-	case "OperationConnection.nodes":
-		if e.complexity.OperationConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.OperationConnection.Nodes(childComplexity), true
-
-	case "OperationConnection.pageInfo":
-		if e.complexity.OperationConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.OperationConnection.PageInfo(childComplexity), true
-
-	case "OperationConnection.totalCount":
-		if e.complexity.OperationConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.OperationConnection.TotalCount(childComplexity), true
-
-	case "OperationEdge.cursor":
-		if e.complexity.OperationEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.OperationEdge.Cursor(childComplexity), true
-
-	case "OperationEdge.node":
-		if e.complexity.OperationEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.OperationEdge.Node(childComplexity), true
-
-	case "PageInfo.endCursor":
-		if e.complexity.PageInfo.EndCursor == nil {
-			break
-		}
-
-		return e.complexity.PageInfo.EndCursor(childComplexity), true
-
-	case "PageInfo.hasNextPage":
-		if e.complexity.PageInfo.HasNextPage == nil {
-			break
-		}
-
-		return e.complexity.PageInfo.HasNextPage(childComplexity), true
-
-	case "PageInfo.hasPreviousPage":
-		if e.complexity.PageInfo.HasPreviousPage == nil {
-			break
-		}
-
-		return e.complexity.PageInfo.HasPreviousPage(childComplexity), true
-
-	case "PageInfo.startCursor":
-		if e.complexity.PageInfo.StartCursor == nil {
-			break
-		}
-
-		return e.complexity.PageInfo.StartCursor(childComplexity), true
-
-	case "Query.repository":
-		if e.complexity.Query.Repository == nil {
-			break
-		}
-
-		args, err := ec.field_Query_repository_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Query.Repository(childComplexity, args["ref"].(*string)), true
-
-	case "Repository.allBugs":
-		if e.complexity.Repository.AllBugs == nil {
-			break
-		}
-
-		args, err := ec.field_Repository_allBugs_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Repository.AllBugs(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int), args["query"].(*string)), true
-
-	case "Repository.allIdentities":
-		if e.complexity.Repository.AllIdentities == nil {
-			break
-		}
-
-		args, err := ec.field_Repository_allIdentities_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Repository.AllIdentities(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "Repository.bug":
-		if e.complexity.Repository.Bug == nil {
-			break
-		}
-
-		args, err := ec.field_Repository_bug_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Repository.Bug(childComplexity, args["prefix"].(string)), true
-
-	case "Repository.identity":
-		if e.complexity.Repository.Identity == nil {
-			break
-		}
-
-		args, err := ec.field_Repository_identity_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Repository.Identity(childComplexity, args["prefix"].(string)), true
-
-	case "Repository.name":
-		if e.complexity.Repository.Name == nil {
-			break
-		}
-
-		return e.complexity.Repository.Name(childComplexity), true
-
-	case "Repository.userIdentity":
-		if e.complexity.Repository.UserIdentity == nil {
-			break
-		}
-
-		return e.complexity.Repository.UserIdentity(childComplexity), true
-
-	case "Repository.validLabels":
-		if e.complexity.Repository.ValidLabels == nil {
-			break
-		}
-
-		args, err := ec.field_Repository_validLabels_args(context.TODO(), rawArgs)
-		if err != nil {
-			return 0, false
-		}
-
-		return e.complexity.Repository.ValidLabels(childComplexity, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int)), true
-
-	case "SetStatusOperation.author":
-		if e.complexity.SetStatusOperation.Author == nil {
-			break
-		}
-
-		return e.complexity.SetStatusOperation.Author(childComplexity), true
-
-	case "SetStatusOperation.date":
-		if e.complexity.SetStatusOperation.Date == nil {
-			break
-		}
-
-		return e.complexity.SetStatusOperation.Date(childComplexity), true
-
-	case "SetStatusOperation.id":
-		if e.complexity.SetStatusOperation.ID == nil {
-			break
-		}
-
-		return e.complexity.SetStatusOperation.ID(childComplexity), true
-
-	case "SetStatusOperation.status":
-		if e.complexity.SetStatusOperation.Status == nil {
-			break
-		}
-
-		return e.complexity.SetStatusOperation.Status(childComplexity), true
-
-	case "SetStatusTimelineItem.author":
-		if e.complexity.SetStatusTimelineItem.Author == nil {
-			break
-		}
-
-		return e.complexity.SetStatusTimelineItem.Author(childComplexity), true
-
-	case "SetStatusTimelineItem.date":
-		if e.complexity.SetStatusTimelineItem.Date == nil {
-			break
-		}
-
-		return e.complexity.SetStatusTimelineItem.Date(childComplexity), true
-
-	case "SetStatusTimelineItem.id":
-		if e.complexity.SetStatusTimelineItem.ID == nil {
-			break
-		}
-
-		return e.complexity.SetStatusTimelineItem.ID(childComplexity), true
-
-	case "SetStatusTimelineItem.status":
-		if e.complexity.SetStatusTimelineItem.Status == nil {
-			break
-		}
-
-		return e.complexity.SetStatusTimelineItem.Status(childComplexity), true
-
-	case "SetTitleOperation.author":
-		if e.complexity.SetTitleOperation.Author == nil {
-			break
-		}
-
-		return e.complexity.SetTitleOperation.Author(childComplexity), true
-
-	case "SetTitleOperation.date":
-		if e.complexity.SetTitleOperation.Date == nil {
-			break
-		}
-
-		return e.complexity.SetTitleOperation.Date(childComplexity), true
-
-	case "SetTitleOperation.id":
-		if e.complexity.SetTitleOperation.ID == nil {
-			break
-		}
-
-		return e.complexity.SetTitleOperation.ID(childComplexity), true
-
-	case "SetTitleOperation.title":
-		if e.complexity.SetTitleOperation.Title == nil {
-			break
-		}
-
-		return e.complexity.SetTitleOperation.Title(childComplexity), true
-
-	case "SetTitleOperation.was":
-		if e.complexity.SetTitleOperation.Was == nil {
-			break
-		}
-
-		return e.complexity.SetTitleOperation.Was(childComplexity), true
-
-	case "SetTitlePayload.bug":
-		if e.complexity.SetTitlePayload.Bug == nil {
-			break
-		}
-
-		return e.complexity.SetTitlePayload.Bug(childComplexity), true
-
-	case "SetTitlePayload.clientMutationId":
-		if e.complexity.SetTitlePayload.ClientMutationID == nil {
-			break
-		}
-
-		return e.complexity.SetTitlePayload.ClientMutationID(childComplexity), true
-
-	case "SetTitlePayload.operation":
-		if e.complexity.SetTitlePayload.Operation == nil {
-			break
-		}
-
-		return e.complexity.SetTitlePayload.Operation(childComplexity), true
-
-	case "SetTitleTimelineItem.author":
-		if e.complexity.SetTitleTimelineItem.Author == nil {
-			break
-		}
-
-		return e.complexity.SetTitleTimelineItem.Author(childComplexity), true
-
-	case "SetTitleTimelineItem.date":
-		if e.complexity.SetTitleTimelineItem.Date == nil {
-			break
-		}
-
-		return e.complexity.SetTitleTimelineItem.Date(childComplexity), true
-
-	case "SetTitleTimelineItem.id":
-		if e.complexity.SetTitleTimelineItem.ID == nil {
-			break
-		}
-
-		return e.complexity.SetTitleTimelineItem.ID(childComplexity), true
-
-	case "SetTitleTimelineItem.title":
-		if e.complexity.SetTitleTimelineItem.Title == nil {
-			break
-		}
-
-		return e.complexity.SetTitleTimelineItem.Title(childComplexity), true
-
-	case "SetTitleTimelineItem.was":
-		if e.complexity.SetTitleTimelineItem.Was == nil {
-			break
-		}
-
-		return e.complexity.SetTitleTimelineItem.Was(childComplexity), true
-
-	case "TimelineItemConnection.edges":
-		if e.complexity.TimelineItemConnection.Edges == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemConnection.Edges(childComplexity), true
-
-	case "TimelineItemConnection.nodes":
-		if e.complexity.TimelineItemConnection.Nodes == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemConnection.Nodes(childComplexity), true
-
-	case "TimelineItemConnection.pageInfo":
-		if e.complexity.TimelineItemConnection.PageInfo == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemConnection.PageInfo(childComplexity), true
-
-	case "TimelineItemConnection.totalCount":
-		if e.complexity.TimelineItemConnection.TotalCount == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemConnection.TotalCount(childComplexity), true
-
-	case "TimelineItemEdge.cursor":
-		if e.complexity.TimelineItemEdge.Cursor == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemEdge.Cursor(childComplexity), true
-
-	case "TimelineItemEdge.node":
-		if e.complexity.TimelineItemEdge.Node == nil {
-			break
-		}
-
-		return e.complexity.TimelineItemEdge.Node(childComplexity), true
-
-	}
-	return 0, false
-}
-
-func (e *executableSchema) Exec(ctx context.Context) graphql.ResponseHandler {
-	rc := graphql.GetOperationContext(ctx)
-	ec := executionContext{rc, e}
-	first := true
-
-	switch rc.Operation.Operation {
-	case ast.Query:
-		return func(ctx context.Context) *graphql.Response {
-			if !first {
-				return nil
-			}
-			first = false
-			data := ec._Query(ctx, rc.Operation.SelectionSet)
-			var buf bytes.Buffer
-			data.MarshalGQL(&buf)
-
-			return &graphql.Response{
-				Data: buf.Bytes(),
-			}
-		}
-	case ast.Mutation:
-		return func(ctx context.Context) *graphql.Response {
-			if !first {
-				return nil
-			}
-			first = false
-			data := ec._Mutation(ctx, rc.Operation.SelectionSet)
-			var buf bytes.Buffer
-			data.MarshalGQL(&buf)
-
-			return &graphql.Response{
-				Data: buf.Bytes(),
-			}
-		}
-
-	default:
-		return graphql.OneShot(graphql.ErrorResponse(ctx, "unsupported GraphQL operation"))
-	}
-}
-
-type executionContext struct {
-	*graphql.OperationContext
-	*executableSchema
-}
-
-func (ec *executionContext) introspectSchema() (*introspection.Schema, error) {
-	if ec.DisableIntrospection {
-		return nil, errors.New("introspection disabled")
-	}
-	return introspection.WrapSchema(parsedSchema), nil
-}
-
-func (ec *executionContext) introspectType(name string) (*introspection.Type, error) {
-	if ec.DisableIntrospection {
-		return nil, errors.New("introspection disabled")
-	}
-	return introspection.WrapTypeFromDef(parsedSchema, parsedSchema.Types[name]), nil
-}
-
-var sources = []*ast.Source{
-	{Name: "schema/bug.graphql", Input: `"""Represents a comment on a bug."""
-type Comment implements Authored {
-  """The author of this comment."""
-  author: Identity!
-
-  """The message of this comment."""
-  message: String!
-
-  """All media's hash referenced in this comment"""
-  files: [Hash!]!
-}
-
-type CommentConnection {
-  edges: [CommentEdge!]!
-  nodes: [Comment!]!
-  pageInfo: PageInfo!
-  totalCount: Int!
-}
-
-type CommentEdge {
-  cursor: String!
-  node: Comment!
-}
-
-enum Status {
-  OPEN
-  CLOSED
-}
-
-type Bug implements Authored {
-  """The identifier for this bug"""
-  id: String!
-  """The human version (truncated) identifier for this bug"""
-  humanId: String!
-  status: Status!
-  title: String!
-  labels: [Label!]!
-  author: Identity!
-  createdAt: Time!
-  lastEdit: Time!
-
-  """The actors of the bug. Actors are Identity that have interacted with the bug."""
-  actors(
-    """Returns the elements in the list that come after the specified cursor."""
-    after: String
-    """Returns the elements in the list that come before the specified cursor."""
-    before: String
-    """Returns the first _n_ elements from the list."""
-    first: Int
-    """Returns the last _n_ elements from the list."""
-    last: Int
-  ): IdentityConnection!
-
-  """The participants of the bug. Participants are Identity that have created or
-  added a comment on the bug."""
-  participants(
-    """Returns the elements in the list that come after the specified cursor."""
-    after: String
-    """Returns the elements in the list that come before the specified cursor."""
-    before: String
-    """Returns the first _n_ elements from the list."""
-    first: Int
-    """Returns the last _n_ elements from the list."""
-    last: Int
-  ): IdentityConnection!
-
-  comments(
-    """Returns the elements in the list that come after the specified cursor."""
-    after: String
-    """Returns the elements in the list that come before the specified cursor."""
-    before: String
-    """Returns the first _n_ elements from the list."""
-    first: Int
-    """Returns the last _n_ elements from the list."""
-    last: Int
-  ): CommentConnection!
-
-  timeline(
-    """Returns the elements in the list that come after the specified cursor."""
-    after: String
-    """Returns the elements in the list that come before the specified cursor."""
-    before: String
-    """Returns the first _n_ elements from the list."""
-    first: Int
-    """Returns the last _n_ elements from the list."""
-    last: Int
-  ): TimelineItemConnection!
-
-  operations(
-    """Returns the elements in the list that come after the specified cursor."""
-    after: String
-    """Returns the elements in the list that come before the specified cursor."""
-    before: String
-    """Returns the first _n_ elements from the list."""
-    first: Int
-    """Returns the last _n_ elements from the list."""
-    last: Int
-  ): OperationConnection!
-}
-
-"""The connection type for Bug."""
-type BugConnection {
-  """A list of edges."""
-  edges: [BugEdge!]!
-  nodes: [Bug!]!
-  """Information to aid in pagination."""
-  pageInfo: PageInfo!
-  """Identifies the total count of items in the connection."""
-  totalCount: Int!
-}
-
-"""An edge in a connection."""
-type BugEdge {
-  """A cursor for use in pagination."""
-  cursor: String!
-  """The item at the end of the edge."""
-  node: Bug!
-}
-`, BuiltIn: false},
-	{Name: "schema/identity.graphql", Input: `"""Represents an identity"""
-type Identity {
-    """The identifier for this identity"""
-    id: String!
-    """The human version (truncated) identifier for this identity"""
-    humanId: String!
-    """The name of the person, if known."""
-    name: String
-    """The email of the person, if known."""
-    email: String
-    """The login of the person, if known."""
-    login: String
-    """A non-empty string to display, representing the identity, based on the non-empty values."""
-    displayName: String!
-    """An url to an avatar"""
-    avatarUrl: String
-    """isProtected is true if the chain of git commits started to be signed.
-    If that's the case, only signed commit with a valid key for this identity can be added."""
-    isProtected: Boolean!
-}
-
-type IdentityConnection {
-    edges: [IdentityEdge!]!
-    nodes: [Identity!]!
-    pageInfo: PageInfo!
-    totalCount: Int!
-}
-
-type IdentityEdge {
-    cursor: String!
-    node: Identity!
-}`, BuiltIn: false},
-	{Name: "schema/label.graphql", Input: `"""Label for a bug."""
-type Label {
-    """The name of the label."""
-    name: String!
-    """Color of the label."""
-    color: Color!
-}
-
-type LabelConnection {
-    edges: [LabelEdge!]!
-    nodes: [Label!]!
-    pageInfo: PageInfo!
-    totalCount: Int!
-}
-
-type LabelEdge {
-    cursor: String!
-    node: Label!
-}`, BuiltIn: false},
-	{Name: "schema/mutations.graphql", Input: `input NewBugInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The title of the new bug."""
-    title: String!
-    """The first message of the new bug."""
-    message: String!
-    """The collection of file's hash required for the first message."""
-    files: [Hash!]
-}
-
-type NewBugPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The created bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: CreateOperation!
-}
-
-input AddCommentInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The message to be added to the bug."""
-    message: String!
-    """The collection of file's hash required for the first message."""
-    files: [Hash!]
-}
-
-type AddCommentPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: AddCommentOperation!
-}
-
-input AddCommentAndCloseBugInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The message to be added to the bug."""
-    message: String!
-    """The collection of file's hash required for the first message."""
-    files: [Hash!]
-}
-
-type AddCommentAndCloseBugPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting AddComment operation."""
-    commentOperation: AddCommentOperation!
-    """The resulting SetStatusOperation."""
-    statusOperation: SetStatusOperation!
-}
-
-input AddCommentAndReopenBugInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The message to be added to the bug."""
-    message: String!
-    """The collection of file's hash required for the first message."""
-    files: [Hash!]
-}
-
-type AddCommentAndReopenBugPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting AddComment operation."""
-    commentOperation: AddCommentOperation!
-    """The resulting SetStatusOperation."""
-    statusOperation: SetStatusOperation!
-}
-
-input EditCommentInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The ID of the comment to be changed."""
-    target: String!
-    """The new message to be set."""
-    message: String!
-    """The collection of file's hash required for the first message."""
-    files: [Hash!]
-}
-
-type EditCommentPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: EditCommentOperation!
-}
-
-input ChangeLabelInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The list of label to add."""
-    added: [String!]
-    """The list of label to remove."""
-    Removed: [String!]
-}
-
-enum LabelChangeStatus {
-    ADDED
-    REMOVED
-    DUPLICATE_IN_OP
-    ALREADY_EXIST
-    DOESNT_EXIST
-}
-
-type LabelChangeResult {
-    """The source label."""
-    label: Label!
-    """The effect this label had."""
-    status: LabelChangeStatus!
-}
-
-type ChangeLabelPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: LabelChangeOperation!
-    """The effect each source label had."""
-    results: [LabelChangeResult]!
-}
-
-input OpenBugInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-}
-
-type OpenBugPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: SetStatusOperation!
-}
-
-input CloseBugInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-}
-
-type CloseBugPayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation."""
-    operation: SetStatusOperation!
-}
-
-input SetTitleInput {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The name of the repository. If not set, the default repository is used."""
-    repoRef: String
-    """The bug ID's prefix."""
-    prefix: String!
-    """The new title."""
-    title: String!
-}
-
-type SetTitlePayload {
-    """A unique identifier for the client performing the mutation."""
-    clientMutationId: String
-    """The affected bug."""
-    bug: Bug!
-    """The resulting operation"""
-    operation: SetTitleOperation!
-}
-`, BuiltIn: false},
-	{Name: "schema/operations.graphql", Input: `"""An operation applied to a bug."""
-interface Operation {
-    """The identifier of the operation"""
-    id: String!
-    """The operations author."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-}
-
-# Connection
-
-"""The connection type for an Operation"""
-type OperationConnection {
-    edges: [OperationEdge!]!
-    nodes: [Operation!]!
-    pageInfo: PageInfo!
-    totalCount: Int!
-}
-
-"""Represent an Operation"""
-type OperationEdge {
-    cursor: String!
-    node: Operation!
-}
-
-# Operations
-
-type CreateOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    title: String!
-    message: String!
-    files: [Hash!]!
-}
-
-type SetTitleOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    title: String!
-    was: String!
-}
-
-type AddCommentOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    message: String!
-    files: [Hash!]!
-}
-
-type EditCommentOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    target: String!
-    message: String!
-    files: [Hash!]!
-}
-
-type SetStatusOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    status: Status!
-}
-
-type LabelChangeOperation implements Operation & Authored {
-    """The identifier of the operation"""
-    id: String!
-    """The author of this object."""
-    author: Identity!
-    """The datetime when this operation was issued."""
-    date: Time!
-
-    added: [Label!]!
-    removed: [Label!]!
-}
-`, BuiltIn: false},
-	{Name: "schema/repository.graphql", Input: `
-type Repository {
-    """The name of the repository"""
-    name: String
-
-    """All the bugs"""
-    allBugs(
-        """Returns the elements in the list that come after the specified cursor."""
-        after: String
-        """Returns the elements in the list that come before the specified cursor."""
-        before: String
-        """Returns the first _n_ elements from the list."""
-        first: Int
-        """Returns the last _n_ elements from the list."""
-        last: Int
-        """A query to select and order bugs."""
-        query: String
-    ): BugConnection!
-
-    bug(prefix: String!): Bug
-
-    """All the identities"""
-    allIdentities(
-        """Returns the elements in the list that come after the specified cursor."""
-        after: String
-        """Returns the elements in the list that come before the specified cursor."""
-        before: String
-        """Returns the first _n_ elements from the list."""
-        first: Int
-        """Returns the last _n_ elements from the list."""
-        last: Int
-    ): IdentityConnection!
-
-    identity(prefix: String!): Identity
-
-    """The identity created or selected by the user as its own"""
-    userIdentity: Identity
-
-    """List of valid labels."""
-    validLabels(
-        """Returns the elements in the list that come after the specified cursor."""
-        after: String
-        """Returns the elements in the list that come before the specified cursor."""
-        before: String
-        """Returns the first _n_ elements from the list."""
-        first: Int
-        """Returns the last _n_ elements from the list."""
-        last: Int
-    ): LabelConnection!
-}
-`, BuiltIn: false},
-	{Name: "schema/root.graphql", Input: `type Query {
-    """Access a repository by reference/name. If no ref is given, the default repository is returned if any."""
-    repository(ref: String): Repository
-}
-
-type Mutation {
-    """Create a new bug"""
-    newBug(input: NewBugInput!): NewBugPayload!
-    """Add a new comment to a bug"""
-    addComment(input: AddCommentInput!): AddCommentPayload!
-    """Add a new comment to a bug and close it"""
-    addCommentAndClose(input: AddCommentAndCloseBugInput!): AddCommentAndCloseBugPayload!
-    """Add a new comment to a bug and reopen it"""
-    addCommentAndReopen(input: AddCommentAndReopenBugInput!): AddCommentAndReopenBugPayload!
-    """Change a comment of a bug"""
-    editComment(input: EditCommentInput!): EditCommentPayload!
-    """Add or remove a set of label on a bug"""
-    changeLabels(input: ChangeLabelInput): ChangeLabelPayload!
-    """Change a bug's status to open"""
-    openBug(input: OpenBugInput!): OpenBugPayload!
-    """Change a bug's status to closed"""
-    closeBug(input: CloseBugInput!): CloseBugPayload!
-    """Change a bug's title"""
-    setTitle(input: SetTitleInput!): SetTitlePayload!
-}
-`, BuiltIn: false},
-	{Name: "schema/timeline.graphql", Input: `"""An item in the timeline of events"""
-interface TimelineItem {
-    """The identifier of the source operation"""
-    id: String!
-}
-
-"""CommentHistoryStep hold one version of a message in the history"""
-type CommentHistoryStep {
-    message: String!
-    date: Time!
-}
-
-# Connection
-
-"""The connection type for TimelineItem"""
-type TimelineItemConnection {
-    edges: [TimelineItemEdge!]!
-    nodes: [TimelineItem!]!
-    pageInfo: PageInfo!
-    totalCount: Int!
-}
-
-"""Represent a TimelineItem"""
-type TimelineItemEdge {
-    cursor: String!
-    node: TimelineItem!
-}
-
-# Items
-
-"""CreateTimelineItem is a TimelineItem that represent the creation of a bug and its message edition history"""
-type CreateTimelineItem implements TimelineItem & Authored {
-    """The identifier of the source operation"""
-    id: String!
-    author: Identity!
-    message: String!
-    messageIsEmpty: Boolean!
-    files: [Hash!]!
-    createdAt: Time!
-    lastEdit: Time!
-    edited: Boolean!
-    history: [CommentHistoryStep!]!
-}
-
-"""AddCommentTimelineItem is a TimelineItem that represent a Comment and its edition history"""
-type AddCommentTimelineItem implements TimelineItem & Authored {
-    """The identifier of the source operation"""
-    id: String!
-    author: Identity!
-    message: String!
-    messageIsEmpty: Boolean!
-    files: [Hash!]!
-    createdAt: Time!
-    lastEdit: Time!
-    edited: Boolean!
-    history: [CommentHistoryStep!]!
-}
-
-"""LabelChangeTimelineItem is a TimelineItem that represent a change in the labels of a bug"""
-type LabelChangeTimelineItem implements TimelineItem & Authored {
-    """The identifier of the source operation"""
-    id: String!
-    author: Identity!
-    date: Time!
-    added: [Label!]!
-    removed: [Label!]!
-}
-
-"""SetStatusTimelineItem is a TimelineItem that represent a change in the status of a bug"""
-type SetStatusTimelineItem implements TimelineItem & Authored {
-    """The identifier of the source operation"""
-    id: String!
-    author: Identity!
-    date: Time!
-    status: Status!
-}
-
-"""LabelChangeTimelineItem is a TimelineItem that represent a change in the title of a bug"""
-type SetTitleTimelineItem implements TimelineItem & Authored {
-    """The identifier of the source operation"""
-    id: String!
-    author: Identity!
-    date: Time!
-    title: String!
-    was: String!
-}
-`, BuiltIn: false},
-	{Name: "schema/types.graphql", Input: `scalar Time
-scalar Hash
-
-"""Defines a color by red, green and blue components."""
-type Color {
-    """Red component of the color."""
-    R: Int!
-    """Green component of the color."""
-    G: Int!
-    """Blue component of the color."""
-    B: Int!
-}
-
-"""Information about pagination in a connection."""
-type PageInfo {
-    """When paginating forwards, are there more items?"""
-    hasNextPage: Boolean!
-    """When paginating backwards, are there more items?"""
-    hasPreviousPage: Boolean!
-    """When paginating backwards, the cursor to continue."""
-    startCursor: String!
-    """When paginating forwards, the cursor to continue."""
-    endCursor: String!
-}
-
-"""An object that has an author."""
-interface Authored {
-    """The author of this object."""
-    author: Identity!
-}
-`, BuiltIn: false},
-}
-var parsedSchema = gqlparser.MustLoadSchema(sources...)
-
-// endregion ************************** generated!.gotpl **************************
-
-// region    ***************************** args.gotpl *****************************
-
-func (ec *executionContext) field_Bug_actors_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Bug_comments_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Bug_operations_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Bug_participants_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Bug_timeline_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_addCommentAndClose_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.AddCommentAndCloseBugInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNAddCommentAndCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_addCommentAndReopen_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.AddCommentAndReopenBugInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNAddCommentAndReopenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_addComment_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.AddCommentInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNAddCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_changeLabels_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *models.ChangeLabelInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalOChangeLabelInput2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_closeBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.CloseBugInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_editComment_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.EditCommentInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNEditCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_newBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.NewBugInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNNewBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_openBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.OpenBugInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNOpenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Mutation_setTitle_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 models.SetTitleInput
-	if tmp, ok := rawArgs["input"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
-		arg0, err = ec.unmarshalNSetTitleInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitleInput(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["input"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Query___type_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 string
-	if tmp, ok := rawArgs["name"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("name"))
-		arg0, err = ec.unmarshalNString2string(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["name"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Query_repository_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["ref"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("ref"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["ref"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Repository_allBugs_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	var arg4 *string
-	if tmp, ok := rawArgs["query"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("query"))
-		arg4, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["query"] = arg4
-	return args, nil
-}
-
-func (ec *executionContext) field_Repository_allIdentities_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field_Repository_bug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 string
-	if tmp, ok := rawArgs["prefix"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-		arg0, err = ec.unmarshalNString2string(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["prefix"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Repository_identity_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 string
-	if tmp, ok := rawArgs["prefix"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-		arg0, err = ec.unmarshalNString2string(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["prefix"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field_Repository_validLabels_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 *string
-	if tmp, ok := rawArgs["after"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
-		arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["after"] = arg0
-	var arg1 *string
-	if tmp, ok := rawArgs["before"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
-		arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["before"] = arg1
-	var arg2 *int
-	if tmp, ok := rawArgs["first"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
-		arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["first"] = arg2
-	var arg3 *int
-	if tmp, ok := rawArgs["last"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
-		arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["last"] = arg3
-	return args, nil
-}
-
-func (ec *executionContext) field___Type_enumValues_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 bool
-	if tmp, ok := rawArgs["includeDeprecated"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("includeDeprecated"))
-		arg0, err = ec.unmarshalOBoolean2bool(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["includeDeprecated"] = arg0
-	return args, nil
-}
-
-func (ec *executionContext) field___Type_fields_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
-	var err error
-	args := map[string]interface{}{}
-	var arg0 bool
-	if tmp, ok := rawArgs["includeDeprecated"]; ok {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("includeDeprecated"))
-		arg0, err = ec.unmarshalOBoolean2bool(ctx, tmp)
-		if err != nil {
-			return nil, err
-		}
-	}
-	args["includeDeprecated"] = arg0
-	return args, nil
-}
-
-// endregion ***************************** args.gotpl *****************************
-
-// region    ************************** directives.gotpl **************************
-
-// endregion ************************** directives.gotpl **************************
-
-// region    **************************** field.gotpl *****************************
-
-func (ec *executionContext) _AddCommentAndCloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndCloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndCloseBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndCloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndCloseBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndCloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.CommentOperation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.AddCommentOperation)
-	fc.Result = res
-	return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndCloseBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndCloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.StatusOperation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.SetStatusOperation)
-	fc.Result = res
-	return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndReopenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndReopenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndReopenBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndReopenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndReopenBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndReopenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.CommentOperation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.AddCommentOperation)
-	fc.Result = res
-	return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentAndReopenBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentAndReopenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.StatusOperation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.SetStatusOperation)
-	fc.Result = res
-	return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentOperation().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentOperation().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentOperation().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.AddCommentOperation)
-	fc.Result = res
-	return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentTimelineItem().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentTimelineItem().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.MessageIsEmpty(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentTimelineItem().CreatedAt(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.AddCommentTimelineItem().LastEdit(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edited(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _AddCommentTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "AddCommentTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.History, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]bug.CommentHistoryStep)
-	fc.Result = res
-	return ec.marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_id(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_humanId(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().HumanID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_status(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Status(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.Status)
-	fc.Result = res
-	return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_title(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Title(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Labels(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_author(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Author()
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_createdAt(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.CreatedAt(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(time.Time)
-	fc.Result = res
-	return ec.marshalNTime2timeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_lastEdit(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.LastEdit(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(time.Time)
-	fc.Result = res
-	return ec.marshalNTime2timeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_actors(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Bug_actors_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Actors(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.IdentityConnection)
-	fc.Result = res
-	return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_participants(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Bug_participants_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Participants(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.IdentityConnection)
-	fc.Result = res
-	return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_comments(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Bug_comments_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Comments(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.CommentConnection)
-	fc.Result = res
-	return ec.marshalNCommentConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_timeline(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Bug_timeline_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Timeline(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.TimelineItemConnection)
-	fc.Result = res
-	return ec.marshalNTimelineItemConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Bug_operations(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Bug",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Bug_operations_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Bug().Operations(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.OperationConnection)
-	fc.Result = res
-	return ec.marshalNOperationConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]*models.BugEdge)
-	fc.Result = res
-	return ec.marshalNBugEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdgeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapperᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _BugEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "BugEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _ChangeLabelPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "ChangeLabelPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _ChangeLabelPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "ChangeLabelPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _ChangeLabelPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "ChangeLabelPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.LabelChangeOperation)
-	fc.Result = res
-	return ec.marshalNLabelChangeOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _ChangeLabelPayload_results(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "ChangeLabelPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Results, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]*bug.LabelChangeResult)
-	fc.Result = res
-	return ec.marshalNLabelChangeResult2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CloseBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CloseBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CloseBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.SetStatusOperation)
-	fc.Result = res
-	return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Color_R(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Color",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Color().R(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Color_G(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Color",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Color().G(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Color_B(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Color",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Color().B(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Comment_author(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Comment",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Comment().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Comment_message(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Comment",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Comment_files(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Comment",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]*models.CommentEdge)
-	fc.Result = res
-	return ec.marshalNCommentEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdgeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]*bug.Comment)
-	fc.Result = res
-	return ec.marshalNComment2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.Comment)
-	fc.Result = res
-	return ec.marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentHistoryStep_message(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentHistoryStep",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CommentHistoryStep_date(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CommentHistoryStep",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CommentHistoryStep().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateOperation().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateOperation().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateOperation().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Title, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateTimelineItem().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateTimelineItem().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.MessageIsEmpty(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateTimelineItem().CreatedAt(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.CreateTimelineItem().LastEdit(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edited(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _CreateTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "CreateTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.History, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]bug.CommentHistoryStep)
-	fc.Result = res
-	return ec.marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _EditCommentOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.EditCommentOperation().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _EditCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.EditCommentOperation().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _EditCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.EditCommentOperation().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _EditCommentOperation_target(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.EditCommentOperation().Target(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _EditCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+    bug(prefix: String!): Bug
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Message, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
+    """All the identities"""
+    allIdentities(
+        """Returns the elements in the list that come after the specified cursor."""
+        after: String
+        """Returns the elements in the list that come before the specified cursor."""
+        before: String
+        """Returns the first _n_ elements from the list."""
+        first: Int
+        """Returns the last _n_ elements from the list."""
+        last: Int
+    ): IdentityConnection!
 
-func (ec *executionContext) _EditCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+    identity(prefix: String!): Identity
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Files, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.([]repository.Hash)
-	fc.Result = res
-	return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
+    """The identity created or selected by the user as its own"""
+    userIdentity: Identity
+
+    """List of valid labels."""
+    validLabels(
+        """Returns the elements in the list that come after the specified cursor."""
+        after: String
+        """Returns the elements in the list that come before the specified cursor."""
+        before: String
+        """Returns the first _n_ elements from the list."""
+        first: Int
+        """Returns the last _n_ elements from the list."""
+        last: Int
+    ): LabelConnection!
+}
+`, BuiltIn: false},
+		{Name: "../schema/root.graphql", Input: `type Query {
+    """Access a repository by reference/name. If no ref is given, the default repository is returned if any."""
+    repository(ref: String): Repository
 }
 
-func (ec *executionContext) _EditCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+type Mutation {
+    """Create a new bug"""
+    newBug(input: NewBugInput!): NewBugPayload!
+    """Add a new comment to a bug"""
+    addComment(input: AddCommentInput!): AddCommentPayload!
+    """Add a new comment to a bug and close it"""
+    addCommentAndClose(input: AddCommentAndCloseBugInput!): AddCommentAndCloseBugPayload!
+    """Add a new comment to a bug and reopen it"""
+    addCommentAndReopen(input: AddCommentAndReopenBugInput!): AddCommentAndReopenBugPayload!
+    """Change a comment of a bug"""
+    editComment(input: EditCommentInput!): EditCommentPayload!
+    """Add or remove a set of label on a bug"""
+    changeLabels(input: ChangeLabelInput): ChangeLabelPayload!
+    """Change a bug's status to open"""
+    openBug(input: OpenBugInput!): OpenBugPayload!
+    """Change a bug's status to closed"""
+    closeBug(input: CloseBugInput!): CloseBugPayload!
+    """Change a bug's title"""
+    setTitle(input: SetTitleInput!): SetTitlePayload!
+}
+`, BuiltIn: false},
+		{Name: "../schema/timeline.graphql", Input: `"""An item in the timeline of events"""
+interface TimelineItem {
+    """The identifier of the source operation"""
+    id: String!
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+"""CommentHistoryStep hold one version of a message in the history"""
+type CommentHistoryStep {
+    message: String!
+    date: Time!
 }
 
-func (ec *executionContext) _EditCommentPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+# Connection
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+"""The connection type for TimelineItem"""
+type TimelineItemConnection {
+    edges: [TimelineItemEdge!]!
+    nodes: [TimelineItem!]!
+    pageInfo: PageInfo!
+    totalCount: Int!
 }
 
-func (ec *executionContext) _EditCommentPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "EditCommentPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(*bug.EditCommentOperation)
-	fc.Result = res
-	return ec.marshalNEditCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐEditCommentOperation(ctx, field.Selections, res)
+"""Represent a TimelineItem"""
+type TimelineItemEdge {
+    cursor: String!
+    node: TimelineItem!
 }
 
-func (ec *executionContext) _Identity_id(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+# Items
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Identity().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+"""CreateTimelineItem is a TimelineItem that represent the creation of a bug and its message edition history"""
+type CreateTimelineItem implements TimelineItem & Authored {
+    """The identifier of the source operation"""
+    id: String!
+    author: Identity!
+    message: String!
+    messageIsEmpty: Boolean!
+    files: [Hash!]!
+    createdAt: Time!
+    lastEdit: Time!
+    edited: Boolean!
+    history: [CommentHistoryStep!]!
 }
 
-func (ec *executionContext) _Identity_humanId(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Identity().HumanID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+"""AddCommentTimelineItem is a TimelineItem that represent a Comment and its edition history"""
+type AddCommentTimelineItem implements TimelineItem & Authored {
+    """The identifier of the source operation"""
+    id: String!
+    author: Identity!
+    message: String!
+    messageIsEmpty: Boolean!
+    files: [Hash!]!
+    createdAt: Time!
+    lastEdit: Time!
+    edited: Boolean!
+    history: [CommentHistoryStep!]!
 }
 
-func (ec *executionContext) _Identity_name(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
+"""LabelChangeTimelineItem is a TimelineItem that represent a change in the labels of a bug"""
+type LabelChangeTimelineItem implements TimelineItem & Authored {
+    """The identifier of the source operation"""
+    id: String!
+    author: Identity!
+    date: Time!
+    added: [Label!]!
+    removed: [Label!]!
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
+"""SetStatusTimelineItem is a TimelineItem that represent a change in the status of a bug"""
+type SetStatusTimelineItem implements TimelineItem & Authored {
+    """The identifier of the source operation"""
+    id: String!
+    author: Identity!
+    date: Time!
+    status: Status!
 }
 
-func (ec *executionContext) _Identity_email(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
+"""LabelChangeTimelineItem is a TimelineItem that represent a change in the title of a bug"""
+type SetTitleTimelineItem implements TimelineItem & Authored {
+    """The identifier of the source operation"""
+    id: String!
+    author: Identity!
+    date: Time!
+    title: String!
+    was: String!
+}
+`, BuiltIn: false},
+		{Name: "../schema/types.graphql", Input: `scalar Time
+scalar Hash
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Email()
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
+"""Defines a color by red, green and blue components."""
+type Color {
+    """Red component of the color."""
+    R: Int!
+    """Green component of the color."""
+    G: Int!
+    """Blue component of the color."""
+    B: Int!
 }
 
-func (ec *executionContext) _Identity_login(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Login()
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
+"""Information about pagination in a connection."""
+type PageInfo {
+    """When paginating forwards, are there more items?"""
+    hasNextPage: Boolean!
+    """When paginating backwards, are there more items?"""
+    hasPreviousPage: Boolean!
+    """When paginating backwards, the cursor to continue."""
+    startCursor: String!
+    """When paginating forwards, the cursor to continue."""
+    endCursor: String!
 }
 
-func (ec *executionContext) _Identity_displayName(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
+"""An object that has an author."""
+interface Authored {
+    """The author of this object."""
+    author: Identity!
+}
+`, BuiltIn: false},
 	}
+	var parsedSchema = gqlparser.MustLoadSchema(sources...)
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.DisplayName(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
 
-func (ec *executionContext) _Identity_avatarUrl(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
+// endregion ************************** generated!.gotpl **************************
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.AvatarUrl()
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
-}
+// region    ***************************** args.gotpl *****************************
 
-func (ec *executionContext) _Identity_isProtected(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Bug_actors_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Identity",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.IsProtected()
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _IdentityConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.IdentityConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.([]*models.IdentityEdge)
-	fc.Result = res
-	return ec.marshalNIdentityEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdgeᚄ(ctx, field.Selections, res)
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _IdentityConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.IdentityConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Bug_comments_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.([]models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapperᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _IdentityConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.IdentityConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _IdentityConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.IdentityConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Bug_operations_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _IdentityEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.IdentityEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Bug_participants_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _IdentityEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.IdentityEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Bug_timeline_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "IdentityEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _Label_name(ctx context.Context, field graphql.CollectedField, obj *bug.Label) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Mutation_addCommentAndClose_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.AddCommentAndCloseBugInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNAddCommentAndCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Label",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["input"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Label().Name(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Mutation_addCommentAndReopen_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.AddCommentAndReopenBugInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNAddCommentAndReopenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		args["input"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _Label_color(ctx context.Context, field graphql.CollectedField, obj *bug.Label) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Mutation_addComment_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.AddCommentInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNAddCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Label",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["input"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Label().Color(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Mutation_changeLabels_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *models.ChangeLabelInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalOChangeLabelInput2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(*color.RGBA)
-	fc.Result = res
-	return ec.marshalNColor2ᚖimageᚋcolorᚐRGBA(ctx, field.Selections, res)
+		args["input"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Mutation_closeBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.CloseBugInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["input"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeOperation().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Mutation_editComment_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.EditCommentInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNEditCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		args["input"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Mutation_newBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.NewBugInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNNewBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["input"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeOperation().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Mutation_openBug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.OpenBugInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNOpenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		args["input"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Mutation_setTitle_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 models.SetTitleInput
+		if tmp, ok := rawArgs["input"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("input"))
+				arg0, err = ec.unmarshalNSetTitleInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitleInput(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["input"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeOperation().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Query___type_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 string
+		if tmp, ok := rawArgs["name"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("name"))
+				arg0, err = ec.unmarshalNString2string(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+		args["name"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeOperation_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Query_repository_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["ref"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("ref"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+		args["ref"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Added, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Repository_allBugs_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+		var arg4 *string
+		if tmp, ok := rawArgs["query"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("query"))
+				arg4, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["query"] = arg4
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeOperation_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Repository_allIdentities_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Removed, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeResult_label(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeResult) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Repository_bug_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 string
+		if tmp, ok := rawArgs["prefix"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+				arg0, err = ec.unmarshalNString2string(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeResult",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
+		args["prefix"] = arg0
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Label, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field_Repository_identity_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 string
+		if tmp, ok := rawArgs["prefix"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+				arg0, err = ec.unmarshalNString2string(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, field.Selections, res)
+		args["prefix"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeResult_status(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeResult) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field_Repository_validLabels_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 *string
+		if tmp, ok := rawArgs["after"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("after"))
+				arg0, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeResult",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["after"] = arg0
+		var arg1 *string
+		if tmp, ok := rawArgs["before"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("before"))
+				arg1, err = ec.unmarshalOString2ᚖstring(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["before"] = arg1
+		var arg2 *int
+		if tmp, ok := rawArgs["first"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("first"))
+				arg2, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["first"] = arg2
+		var arg3 *int
+		if tmp, ok := rawArgs["last"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("last"))
+				arg3, err = ec.unmarshalOInt2ᚖint(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
+		}
+		args["last"] = arg3
+	return args, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeResult().Status(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) field___Type_enumValues_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 bool
+		if tmp, ok := rawArgs["includeDeprecated"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("includeDeprecated"))
+				arg0, err = ec.unmarshalOBoolean2bool(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-		return graphql.Null
-	}
-	res := resTmp.(models.LabelChangeStatus)
-	fc.Result = res
-	return ec.marshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx, field.Selections, res)
+		args["includeDeprecated"] = arg0
+	return args, nil
 }
 
-func (ec *executionContext) _LabelChangeTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
+func (ec *executionContext) field___Type_fields_args(ctx context.Context, rawArgs map[string]interface{}) (map[string]interface{}, error) {
+	var err error
+	args := map[string]interface{}{}
+		var arg0 bool
+		if tmp, ok := rawArgs["includeDeprecated"]; ok {
+			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("includeDeprecated"))
+				arg0, err = ec.unmarshalOBoolean2bool(ctx, tmp)
+				if err != nil {
+					return nil, err
+				}
 		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
+		args["includeDeprecated"] = arg0
+	return args, nil
+}
+
+
+// endregion ***************************** args.gotpl *****************************
+
+// region    ************************** directives.gotpl **************************
+
+
+
+
+
+
+
+
+
+
+
+
+// endregion ************************** directives.gotpl **************************
+
+// region    **************************** field.gotpl *****************************
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeTimelineItem().ID(rctx, obj)
-	})
+
+func (ec *executionContext) _AddCommentAndCloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndCloseBugPayload_clientMutationId(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _LabelChangeTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeTimelineItem().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _LabelChangeTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+func (ec *executionContext) fieldContext_AddCommentAndCloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndCloseBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.LabelChangeTimelineItem().Date(rctx, obj)
-	})
+func (ec *executionContext) _AddCommentAndCloseBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndCloseBugPayload_bug(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _LabelChangeTimelineItem_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Added, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _LabelChangeTimelineItem_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelChangeTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentAndCloseBugPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndCloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Removed, nil
-	})
+func (ec *executionContext) _AddCommentAndCloseBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndCloseBugPayload_commentOperation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _LabelConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.CommentOperation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]*models.LabelEdge)
-	fc.Result = res
-	return ec.marshalNLabelEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdgeᚄ(ctx, field.Selections, res)
+		res := resTmp.(*bug.AddCommentOperation)
+		fc.Result = res
+		return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _LabelConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentAndCloseBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndCloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_AddCommentOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_AddCommentOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_AddCommentOperation_date(ctx, field)
+						case "message":
+							return ec.fieldContext_AddCommentOperation_message(ctx, field)
+						case "files":
+							return ec.fieldContext_AddCommentOperation_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentOperation", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
+func (ec *executionContext) _AddCommentAndCloseBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndCloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndCloseBugPayload_statusOperation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _LabelConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.StatusOperation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
+		res := resTmp.(*bug.SetStatusOperation)
+		fc.Result = res
+		return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _LabelConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentAndCloseBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndCloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_SetStatusOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_SetStatusOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_SetStatusOperation_date(ctx, field)
+						case "status":
+							return ec.fieldContext_SetStatusOperation_status(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetStatusOperation", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
+func (ec *executionContext) _AddCommentAndReopenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndReopenBugPayload_clientMutationId(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _LabelEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.LabelEdge) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _LabelEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.LabelEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "LabelEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentAndReopenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndReopenBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
+func (ec *executionContext) _AddCommentAndReopenBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndReopenBugPayload_bug(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(bug.Label)
-	fc.Result = res
-	return ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_newBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_newBug_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentAndReopenBugPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndReopenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().NewBug(rctx, args["input"].(models.NewBugInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentAndReopenBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndReopenBugPayload_commentOperation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.NewBugPayload)
-	fc.Result = res
-	return ec.marshalNNewBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_addComment(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.CommentOperation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*bug.AddCommentOperation)
+		fc.Result = res
+		return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_addComment_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentAndReopenBugPayload_commentOperation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndReopenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_AddCommentOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_AddCommentOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_AddCommentOperation_date(ctx, field)
+						case "message":
+							return ec.fieldContext_AddCommentOperation_message(ctx, field)
+						case "files":
+							return ec.fieldContext_AddCommentOperation_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentOperation", field.Name)
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().AddComment(rctx, args["input"].(models.AddCommentInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentAndReopenBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentAndReopenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentAndReopenBugPayload_statusOperation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.AddCommentPayload)
-	fc.Result = res
-	return ec.marshalNAddCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_addCommentAndClose(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_addCommentAndClose_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.StatusOperation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().AddCommentAndClose(rctx, args["input"].(models.AddCommentAndCloseBugInput))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+		res := resTmp.(*bug.SetStatusOperation)
+		fc.Result = res
+		return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_AddCommentAndReopenBugPayload_statusOperation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentAndReopenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_SetStatusOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_SetStatusOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_SetStatusOperation_date(ctx, field)
+						case "status":
+							return ec.fieldContext_SetStatusOperation_status(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetStatusOperation", field.Name)
+		},
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentOperation_id(ctx, field)
+	if err != nil {
 		return graphql.Null
 	}
-	res := resTmp.(*models.AddCommentAndCloseBugPayload)
-	fc.Result = res
-	return ec.marshalNAddCommentAndCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_addCommentAndReopen(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_addCommentAndReopen_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().AddCommentAndReopen(rctx, args["input"].(models.AddCommentAndReopenBugInput))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*models.AddCommentAndReopenBugPayload)
-	fc.Result = res
-	return ec.marshalNAddCommentAndReopenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Mutation_editComment(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_AddCommentOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentOperation",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_editComment_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().EditComment(rctx, args["input"].(models.EditCommentInput))
-	})
+func (ec *executionContext) _AddCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentOperation_author(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.EditCommentPayload)
-	fc.Result = res
-	return ec.marshalNEditCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_changeLabels(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_changeLabels_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().ChangeLabels(rctx, args["input"].(*models.ChangeLabelInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentOperation_date(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.ChangeLabelPayload)
-	fc.Result = res
-	return ec.marshalNChangeLabelPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_openBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_openBug_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().OpenBug(rctx, args["input"].(models.OpenBugInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentOperation_message(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.OpenBugPayload)
-	fc.Result = res
-	return ec.marshalNOpenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_closeBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_closeBug_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentOperation_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().CloseBug(rctx, args["input"].(models.CloseBugInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentOperation_files(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.CloseBugPayload)
-	fc.Result = res
-	return ec.marshalNCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Mutation_setTitle(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Mutation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Mutation_setTitle_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_AddCommentOperation_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Mutation().SetTitle(rctx, args["input"].(models.SetTitleInput))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentPayload_clientMutationId(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.SetTitlePayload)
-	fc.Result = res
-	return ec.marshalNSetTitlePayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _NewBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "NewBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
 		return obj.ClientMutationID, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _NewBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "NewBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
+func (ec *executionContext) _AddCommentPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentPayload_bug(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _NewBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) fieldContext_AddCommentPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.AddCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentPayload_operation(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "NewBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.AddCommentOperation)
+		fc.Result = res
+		return ec.marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_AddCommentPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_AddCommentOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_AddCommentOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_AddCommentOperation_date(ctx, field)
+						case "message":
+							return ec.fieldContext_AddCommentOperation_message(ctx, field)
+						case "files":
+							return ec.fieldContext_AddCommentOperation_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentOperation", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_id(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentTimelineItem().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*bug.CreateOperation)
-	fc.Result = res
-	return ec.marshalNCreateOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCreateOperation(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _OpenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "OpenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentTimelineItem().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _AddCommentTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_message(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _OpenBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "OpenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_messageIsEmpty(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _OpenBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "OpenBugPayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.MessageIsEmpty(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*bug.SetStatusOperation)
-	fc.Result = res
-	return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _OperationConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_files(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]*models.OperationEdge)
-	fc.Result = res
-	return ec.marshalNOperationEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdgeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _OperationConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]bug.Operation)
-	fc.Result = res
-	return ec.marshalNOperation2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐOperationᚄ(ctx, field.Selections, res)
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _OperationConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_createdAt(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _OperationConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentTimelineItem().CreatedAt(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _OperationEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_lastEdit(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _OperationEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "OperationEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.AddCommentTimelineItem().LastEdit(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(bug.Operation)
-	fc.Result = res
-	return ec.marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐOperation(ctx, field.Selections, res)
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _PageInfo_hasNextPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "PageInfo",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.HasNextPage, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_edited(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _PageInfo_hasPreviousPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "PageInfo",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.HasPreviousPage, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edited(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _PageInfo_startCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "PageInfo",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_edited(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: true,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.StartCursor, nil
-	})
+func (ec *executionContext) _AddCommentTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.AddCommentTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_AddCommentTimelineItem_history(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _PageInfo_endCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "PageInfo",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.EndCursor, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.History, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.([]bug.CommentHistoryStep)
+		fc.Result = res
+		return ec.marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Query_repository(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Query",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+func (ec *executionContext) fieldContext_AddCommentTimelineItem_history(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "AddCommentTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "message":
+							return ec.fieldContext_CommentHistoryStep_message(ctx, field)
+						case "date":
+							return ec.fieldContext_CommentHistoryStep_date(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CommentHistoryStep", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Query_repository_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Query().Repository(rctx, args["ref"].(*string))
-	})
+func (ec *executionContext) _Bug_id(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_id(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*models.Repository)
-	fc.Result = res
-	return ec.marshalORepository2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐRepository(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Query___type(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Query",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Query___type_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.introspectType(args["name"].(string))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Query___schema(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Query",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_Bug_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.introspectSchema()
-	})
+func (ec *executionContext) _Bug_humanId(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_humanId(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Schema)
-	fc.Result = res
-	return ec.marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Repository_name(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().Name(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().HumanID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Repository_allBugs(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_humanId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Repository_allBugs_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().AllBugs(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int), args["query"].(*string))
-	})
+func (ec *executionContext) _Bug_status(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_status(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.BugConnection)
-	fc.Result = res
-	return ec.marshalNBugConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Repository_bug(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Repository_bug_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().Bug(rctx, obj, args["prefix"].(string))
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Status(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalOBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+		res := resTmp.(models.Status)
+		fc.Result = res
+		return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Repository_allIdentities(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_status(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Status does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Repository_allIdentities_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().AllIdentities(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
+func (ec *executionContext) _Bug_title(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_title(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.IdentityConnection)
-	fc.Result = res
-	return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Repository_identity(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Title(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Repository_identity_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_Bug_title(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().Identity(rctx, obj, args["prefix"].(string))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_labels(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _Repository_userIdentity(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().UserIdentity(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Labels(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Repository_validLabels(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) fieldContext_Bug_labels(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _Bug_author(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "Repository",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Author()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field_Repository_validLabels_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_Bug_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.Repository().ValidLabels(rctx, obj, args["after"].(*string), args["before"].(*string), args["first"].(*int), args["last"].(*int))
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _Bug_createdAt(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_createdAt(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.LabelConnection)
-	fc.Result = res
-	return ec.marshalNLabelConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetStatusOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusOperation().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.CreatedAt(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(time.Time)
+		fc.Result = res
+		return ec.marshalNTime2timeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetStatusOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+func (ec *executionContext) fieldContext_Bug_createdAt(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusOperation().Author(rctx, obj)
-	})
+func (ec *executionContext) _Bug_lastEdit(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_lastEdit(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetStatusOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusOperation().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.LastEdit(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+		res := resTmp.(time.Time)
+		fc.Result = res
+		return ec.marshalNTime2timeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetStatusOperation_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+func (ec *executionContext) fieldContext_Bug_lastEdit(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusOperation().Status(rctx, obj)
-	})
+func (ec *executionContext) _Bug_actors(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_actors(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(models.Status)
-	fc.Result = res
-	return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetStatusTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusTimelineItem().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Actors(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(*connections.Result[NodeT any])
+		fc.Result = res
+		return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋconnectionsᚐResult(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetStatusTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_actors(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_IdentityConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_IdentityConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_IdentityConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_IdentityConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type IdentityConnection", field.Name)
+		},
 	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Bug_actors_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusTimelineItem().Author(rctx, obj)
-	})
+func (ec *executionContext) _Bug_participants(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_participants(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Participants(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		res := resTmp.(*connections.Result[NodeT any])
+		fc.Result = res
+		return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋconnectionsᚐResult(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetStatusTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_participants(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_IdentityConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_IdentityConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_IdentityConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_IdentityConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type IdentityConnection", field.Name)
+		},
 	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Bug_participants_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusTimelineItem().Date(rctx, obj)
-	})
+func (ec *executionContext) _Bug_comments(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_comments(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetStatusTimelineItem_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetStatusTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetStatusTimelineItem().Status(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Comments(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.Status)
-	fc.Result = res
-	return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
+		res := resTmp.(*models.CommentConnection)
+		fc.Result = res
+		return ec.marshalNCommentConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetTitleOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_comments(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_CommentConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_CommentConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_CommentConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_CommentConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CommentConnection", field.Name)
+		},
 	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Bug_comments_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleOperation().ID(rctx, obj)
-	})
+func (ec *executionContext) _Bug_timeline(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_timeline(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitleOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleOperation().Author(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Timeline(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		res := resTmp.(*models.TimelineItemConnection)
+		fc.Result = res
+		return ec.marshalNTimelineItemConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetTitleOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Bug_timeline(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
 		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_TimelineItemConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_TimelineItemConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_TimelineItemConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_TimelineItemConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type TimelineItemConnection", field.Name)
+		},
 	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Bug_timeline_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleOperation().Date(rctx, obj)
-	})
+func (ec *executionContext) _Bug_operations(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Bug_operations(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitleOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Bug().Operations(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*models.OperationConnection)
+		fc.Result = res
+		return ec.marshalNOperationConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Title, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_Bug_operations(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Bug",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_OperationConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_OperationConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_OperationConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_OperationConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type OperationConnection", field.Name)
+		},
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Bug_operations_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+	return fc, nil
 }
 
-func (ec *executionContext) _SetTitleOperation_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) _BugConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugConnection_edges(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleOperation",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edges, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.([]*models.BugEdge)
+		fc.Result = res
+		return ec.marshalNBugEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdgeᚄ(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_BugConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_BugEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_BugEdge_node(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type BugEdge", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Was, nil
-	})
+func (ec *executionContext) _BugConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugConnection_nodes(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitlePayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitlePayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Nodes, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.([]models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapperᚄ(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_BugConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.ClientMutationID, nil
-	})
+func (ec *executionContext) _BugConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugConnection_pageInfo(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitlePayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitlePayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_BugConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Bug, nil
-	})
+func (ec *executionContext) _BugConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.BugConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugConnection_totalCount(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(models.BugWrapper)
-	fc.Result = res
-	return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitlePayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitlePayload",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_BugConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Operation, nil
-	})
+func (ec *executionContext) _BugEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugEdge_cursor(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*bug.SetTitleOperation)
-	fc.Result = res
-	return ec.marshalNSetTitleOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetTitleOperation(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitleTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleTimelineItem().ID(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetTitleTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
+func (ec *executionContext) fieldContext_BugEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleTimelineItem().Author(rctx, obj)
-	})
+func (ec *executionContext) _BugEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.BugEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_BugEdge_node(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(models.IdentityWrapper)
-	fc.Result = res
-	return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_BugEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "BugEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) _SetTitleTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) _ChangeLabelPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_ChangeLabelPayload_clientMutationId(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: true,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return ec.resolvers.SetTitleTimelineItem().Date(rctx, obj)
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*time.Time)
-	fc.Result = res
-	return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _SetTitleTimelineItem_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_ChangeLabelPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "ChangeLabelPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Title, nil
-	})
+func (ec *executionContext) _ChangeLabelPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_ChangeLabelPayload_bug(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _SetTitleTimelineItem_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "SetTitleTimelineItem",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Was, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _TimelineItemConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_ChangeLabelPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "ChangeLabelPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Edges, nil
-	})
+func (ec *executionContext) _ChangeLabelPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_ChangeLabelPayload_operation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]*models.TimelineItemEdge)
-	fc.Result = res
-	return ec.marshalNTimelineItemEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdgeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _TimelineItemConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Nodes, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]bug.TimelineItem)
-	fc.Result = res
-	return ec.marshalNTimelineItem2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItemᚄ(ctx, field.Selections, res)
+		res := resTmp.(*bug.LabelChangeOperation)
+		fc.Result = res
+		return ec.marshalNLabelChangeOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeOperation(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _TimelineItemConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_ChangeLabelPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "ChangeLabelPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_LabelChangeOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_LabelChangeOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_LabelChangeOperation_date(ctx, field)
+						case "added":
+							return ec.fieldContext_LabelChangeOperation_added(ctx, field)
+						case "removed":
+							return ec.fieldContext_LabelChangeOperation_removed(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type LabelChangeOperation", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PageInfo, nil
-	})
+func (ec *executionContext) _ChangeLabelPayload_results(ctx context.Context, field graphql.CollectedField, obj *models.ChangeLabelPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_ChangeLabelPayload_results(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*models.PageInfo)
-	fc.Result = res
-	return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _TimelineItemConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemConnection",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.TotalCount, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Results, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(int)
-	fc.Result = res
-	return ec.marshalNInt2int(ctx, field.Selections, res)
+		res := resTmp.([]*bug.LabelChangeResult)
+		fc.Result = res
+		return ec.marshalNLabelChangeResult2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _TimelineItemEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_ChangeLabelPayload_results(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "ChangeLabelPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "label":
+							return ec.fieldContext_LabelChangeResult_label(ctx, field)
+						case "status":
+							return ec.fieldContext_LabelChangeResult_status(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type LabelChangeResult", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Cursor, nil
-	})
+func (ec *executionContext) _CloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CloseBugPayload_clientMutationId(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) _TimelineItemEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "TimelineItemEdge",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_CloseBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Node, nil
-	})
+func (ec *executionContext) _CloseBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CloseBugPayload_bug(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(bug.TimelineItem)
-	fc.Result = res
-	return ec.marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Directive_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Directive",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_CloseBugPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name, nil
-	})
+func (ec *executionContext) _CloseBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.CloseBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CloseBugPayload_operation(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Directive_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Directive",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.SetStatusOperation)
+		fc.Result = res
+		return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_CloseBugPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CloseBugPayload",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_SetStatusOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_SetStatusOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_SetStatusOperation_date(ctx, field)
+						case "status":
+							return ec.fieldContext_SetStatusOperation_status(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetStatusOperation", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Description, nil
-	})
+func (ec *executionContext) _Color_R(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Color_R(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Color().R(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Directive_locations(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) fieldContext_Color_R(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Color",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _Color_G(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Color_G(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Directive",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Color().G(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Locations, nil
-	})
+func (ec *executionContext) fieldContext_Color_G(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Color",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _Color_B(ctx context.Context, field graphql.CollectedField, obj *color.RGBA) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Color_B(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Color().B(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]string)
-	fc.Result = res
-	return ec.marshalN__DirectiveLocation2ᚕstringᚄ(ctx, field.Selections, res)
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_Color_B(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Color",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) ___Directive_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) _Comment_author(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Comment_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Directive",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Args, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Comment().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.InputValue)
-	fc.Result = res
-	return ec.marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Directive_isRepeatable(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Directive",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_Comment_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Comment",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.IsRepeatable, nil
-	})
+func (ec *executionContext) _Comment_message(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Comment_message(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___EnumValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__EnumValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___EnumValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__EnumValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_Comment_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Comment",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Description, nil
-	})
+func (ec *executionContext) _Comment_files(ctx context.Context, field graphql.CollectedField, obj *bug.Comment) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Comment_files(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___EnumValue_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__EnumValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.IsDeprecated(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___EnumValue_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__EnumValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_Comment_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Comment",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.DeprecationReason(), nil
-	})
+func (ec *executionContext) _CommentConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentConnection_edges(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Field_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edges, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.([]*models.CommentEdge)
+		fc.Result = res
+		return ec.marshalNCommentEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdgeᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Field_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_CommentConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_CommentEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_CommentEdge_node(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CommentEdge", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Description, nil
-	})
+func (ec *executionContext) _CommentConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentConnection_nodes(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Field_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Args, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Nodes, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.InputValue)
-	fc.Result = res
-	return ec.marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
+		res := resTmp.([]*bug.Comment)
+		fc.Result = res
+		return ec.marshalNComment2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Field_type(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_CommentConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "author":
+							return ec.fieldContext_Comment_author(ctx, field)
+						case "message":
+							return ec.fieldContext_Comment_message(ctx, field)
+						case "files":
+							return ec.fieldContext_Comment_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Comment", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Type, nil
-	})
+func (ec *executionContext) _CommentConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentConnection_pageInfo(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Field_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.IsDeprecated(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(bool)
-	fc.Result = res
-	return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Field_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Field",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CommentConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.DeprecationReason(), nil
-	})
+func (ec *executionContext) _CommentConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.CommentConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentConnection_totalCount(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___InputValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__InputValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalNString2string(ctx, field.Selections, res)
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___InputValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__InputValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
+func (ec *executionContext) fieldContext_CommentConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentConnection",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Description, nil
-	})
+func (ec *executionContext) _CommentEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentEdge_cursor(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___InputValue_type(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__InputValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Type, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
+
+func (ec *executionContext) fieldContext_CommentEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) ___InputValue_defaultValue(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) _CommentEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.CommentEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentEdge_node(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__InputValue",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   false,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.DefaultValue, nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+		res := resTmp.(*bug.Comment)
+		fc.Result = res
+		return ec.marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Schema_types(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Schema",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CommentEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentEdge",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "author":
+							return ec.fieldContext_Comment_author(ctx, field)
+						case "message":
+							return ec.fieldContext_Comment_message(ctx, field)
+						case "files":
+							return ec.fieldContext_Comment_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Comment", field.Name)
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Types(), nil
-	})
+func (ec *executionContext) _CommentHistoryStep_message(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentHistoryStep_message(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.Type)
-	fc.Result = res
-	return ec.marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Schema_queryType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Schema",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.QueryType(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Schema_mutationType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Schema",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CommentHistoryStep_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentHistoryStep",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.MutationType(), nil
-	})
+func (ec *executionContext) _CommentHistoryStep_date(ctx context.Context, field graphql.CollectedField, obj *bug.CommentHistoryStep) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CommentHistoryStep_date(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Schema_subscriptionType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Schema",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.SubscriptionType(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CommentHistoryStep().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Schema_directives(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Schema",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_CommentHistoryStep_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CommentHistoryStep",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Directives(), nil
-	})
+func (ec *executionContext) _CreateOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_id(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
-		}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.Directive)
-	fc.Result = res
-	return ec.marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Type_kind(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Kind(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
-		if !graphql.HasFieldError(ctx, fc) {
-			ec.Errorf(ctx, "must not be null")
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalN__TypeKind2string(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Type_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
+func (ec *executionContext) fieldContext_CreateOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Name(), nil
-	})
+func (ec *executionContext) _CreateOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_author(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.(*string)
-	fc.Result = res
-	return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Type_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Description(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(string)
-	fc.Result = res
-	return ec.marshalOString2string(ctx, field.Selections, res)
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
+func (ec *executionContext) fieldContext_CreateOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _CreateOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field___Type_fields_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
+func (ec *executionContext) fieldContext_CreateOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
 	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Fields(args["includeDeprecated"].(bool)), nil
-	})
+	return fc, nil
+}
+
+func (ec *executionContext) _CreateOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_title(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	if resTmp == nil {
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.Field)
-	fc.Result = res
-	return ec.marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐFieldᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Type_interfaces(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.Interfaces(), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Title, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Type_possibleTypes(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CreateOperation_title(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.PossibleTypes(), nil
-	})
+func (ec *executionContext) _CreateOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_message(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
-	if resTmp == nil {
-		return graphql.Null
-	}
-	res := resTmp.([]introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
-}
-
-func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
 		if r := recover(); r != nil {
 			ec.Error(ctx, ec.Recover(ctx, r))
 			ret = graphql.Null
 		}
 	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
-		IsResolver: false,
-	}
-
-	ctx = graphql.WithFieldContext(ctx, fc)
-	rawArgs := field.ArgumentMap(ec.Variables)
-	args, err := ec.field___Type_enumValues_args(ctx, rawArgs)
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
-	fc.Args = args
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.EnumValues(args["includeDeprecated"].(bool)), nil
-	})
-	if err != nil {
-		ec.Error(ctx, err)
-		return graphql.Null
-	}
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.EnumValue)
-	fc.Result = res
-	return ec.marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValueᚄ(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Type_inputFields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CreateOperation_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.InputFields(), nil
-	})
+func (ec *executionContext) _CreateOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateOperation_files(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.([]introspection.InputValue)
-	fc.Result = res
-	return ec.marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) ___Type_ofType(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
-	defer func() {
-		if r := recover(); r != nil {
-			ec.Error(ctx, ec.Recover(ctx, r))
-			ret = graphql.Null
-		}
-	}()
-	fc := &graphql.FieldContext{
-		Object:     "__Type",
-		Field:      field,
-		Args:       nil,
-		IsMethod:   true,
+func (ec *executionContext) fieldContext_CreateOperation_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateOperation",
+		Field: field,
+		IsMethod: false,
 		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
 	}
+	return fc, nil
+}
 
-	ctx = graphql.WithFieldContext(ctx, fc)
-	resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
-		ctx = rctx // use context from middleware stack in children
-		return obj.OfType(), nil
-	})
+func (ec *executionContext) _CreateTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_id(ctx, field)
 	if err != nil {
-		ec.Error(ctx, err)
 		return graphql.Null
 	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateTimelineItem().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
 	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	res := resTmp.(*introspection.Type)
-	fc.Result = res
-	return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-// endregion **************************** field.gotpl *****************************
-
-// region    **************************** input.gotpl *****************************
-
-func (ec *executionContext) unmarshalInputAddCommentAndCloseBugInput(ctx context.Context, obj interface{}) (models.AddCommentAndCloseBugInput, error) {
-	var it models.AddCommentAndCloseBugInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
-	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "message":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
-			it.Message, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "files":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
-			it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		}
+func (ec *executionContext) fieldContext_CreateTimelineItem_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
-
-	return it, nil
+	return fc, nil
 }
 
-func (ec *executionContext) unmarshalInputAddCommentAndReopenBugInput(ctx context.Context, obj interface{}) (models.AddCommentAndReopenBugInput, error) {
-	var it models.AddCommentAndReopenBugInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
+func (ec *executionContext) _CreateTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_author(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "message":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
-			it.Message, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "files":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
-			it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateTimelineItem().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
-
-	return it, nil
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) unmarshalInputAddCommentInput(ctx context.Context, obj interface{}) (models.AddCommentInput, error) {
-	var it models.AddCommentInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
-	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "message":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
-			it.Message, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "files":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
-			it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		}
+func (ec *executionContext) fieldContext_CreateTimelineItem_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
 	}
-
-	return it, nil
+	return fc, nil
 }
 
-func (ec *executionContext) unmarshalInputChangeLabelInput(ctx context.Context, obj interface{}) (models.ChangeLabelInput, error) {
-	var it models.ChangeLabelInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
+func (ec *executionContext) _CreateTimelineItem_message(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_message(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "added":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("added"))
-			it.Added, err = ec.unmarshalOString2ᚕstringᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "Removed":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("Removed"))
-			it.Removed, err = ec.unmarshalOString2ᚕstringᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
-
-	return it, nil
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) unmarshalInputCloseBugInput(ctx context.Context, obj interface{}) (models.CloseBugInput, error) {
-	var it models.CloseBugInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
-	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		}
+func (ec *executionContext) fieldContext_CreateTimelineItem_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
-
-	return it, nil
+	return fc, nil
 }
 
-func (ec *executionContext) unmarshalInputEditCommentInput(ctx context.Context, obj interface{}) (models.EditCommentInput, error) {
-	var it models.EditCommentInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
+func (ec *executionContext) _CreateTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_messageIsEmpty(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "target":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("target"))
-			it.Target, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "message":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
-			it.Message, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "files":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
-			it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.MessageIsEmpty(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
-
-	return it, nil
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) unmarshalInputNewBugInput(ctx context.Context, obj interface{}) (models.NewBugInput, error) {
-	var it models.NewBugInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
-	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "title":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("title"))
-			it.Title, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "message":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
-			it.Message, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "files":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
-			it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		}
+func (ec *executionContext) fieldContext_CreateTimelineItem_messageIsEmpty(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
 	}
-
-	return it, nil
+	return fc, nil
 }
 
-func (ec *executionContext) unmarshalInputOpenBugInput(ctx context.Context, obj interface{}) (models.OpenBugInput, error) {
-	var it models.OpenBugInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
+func (ec *executionContext) _CreateTimelineItem_files(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_files(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
-
-	return it, nil
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) unmarshalInputSetTitleInput(ctx context.Context, obj interface{}) (models.SetTitleInput, error) {
-	var it models.SetTitleInput
-	asMap := map[string]interface{}{}
-	for k, v := range obj.(map[string]interface{}) {
-		asMap[k] = v
-	}
-
-	for k, v := range asMap {
-		switch k {
-		case "clientMutationId":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
-			it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "repoRef":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
-			it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "prefix":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
-			it.Prefix, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		case "title":
-			var err error
-
-			ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("title"))
-			it.Title, err = ec.unmarshalNString2string(ctx, v)
-			if err != nil {
-				return it, err
-			}
-		}
+func (ec *executionContext) fieldContext_CreateTimelineItem_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
 	}
-
-	return it, nil
+	return fc, nil
 }
 
-// endregion **************************** input.gotpl *****************************
-
-// region    ************************** interface.gotpl ***************************
-
-func (ec *executionContext) _Authored(ctx context.Context, sel ast.SelectionSet, obj models.Authored) graphql.Marshaler {
-	switch obj := (obj).(type) {
-	case nil:
+func (ec *executionContext) _CreateTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_createdAt(ctx, field)
+	if err != nil {
 		return graphql.Null
-	case bug.Comment:
-		return ec._Comment(ctx, sel, &obj)
-	case *bug.Comment:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._Comment(ctx, sel, obj)
-	case models.BugWrapper:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._Bug(ctx, sel, obj)
-	case *bug.CreateOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._CreateOperation(ctx, sel, obj)
-	case *bug.SetTitleOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._SetTitleOperation(ctx, sel, obj)
-	case *bug.AddCommentOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._AddCommentOperation(ctx, sel, obj)
-	case *bug.EditCommentOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._EditCommentOperation(ctx, sel, obj)
-	case *bug.SetStatusOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._SetStatusOperation(ctx, sel, obj)
-	case *bug.LabelChangeOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._LabelChangeOperation(ctx, sel, obj)
-	case *bug.CreateTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._CreateTimelineItem(ctx, sel, obj)
-	case *bug.AddCommentTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._AddCommentTimelineItem(ctx, sel, obj)
-	case *bug.LabelChangeTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._LabelChangeTimelineItem(ctx, sel, obj)
-	case *bug.SetStatusTimelineItem:
-		if obj == nil {
-			return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-		return ec._SetStatusTimelineItem(ctx, sel, obj)
-	case *bug.SetTitleTimelineItem:
-		if obj == nil {
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateTimelineItem().CreatedAt(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
 			return graphql.Null
 		}
-		return ec._SetTitleTimelineItem(ctx, sel, obj)
-	default:
-		panic(fmt.Errorf("unexpected type %T", obj))
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _Operation(ctx context.Context, sel ast.SelectionSet, obj bug.Operation) graphql.Marshaler {
-	switch obj := (obj).(type) {
-	case nil:
+func (ec *executionContext) fieldContext_CreateTimelineItem_createdAt(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _CreateTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_lastEdit(ctx, field)
+	if err != nil {
 		return graphql.Null
-	case *bug.CreateOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._CreateOperation(ctx, sel, obj)
-	case *bug.SetTitleOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._SetTitleOperation(ctx, sel, obj)
-	case *bug.AddCommentOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._AddCommentOperation(ctx, sel, obj)
-	case *bug.EditCommentOperation:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._EditCommentOperation(ctx, sel, obj)
-	case *bug.SetStatusOperation:
-		if obj == nil {
-			return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-		return ec._SetStatusOperation(ctx, sel, obj)
-	case *bug.LabelChangeOperation:
-		if obj == nil {
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.CreateTimelineItem().LastEdit(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
 			return graphql.Null
 		}
-		return ec._LabelChangeOperation(ctx, sel, obj)
-	default:
-		panic(fmt.Errorf("unexpected type %T", obj))
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) _TimelineItem(ctx context.Context, sel ast.SelectionSet, obj bug.TimelineItem) graphql.Marshaler {
-	switch obj := (obj).(type) {
-	case nil:
+func (ec *executionContext) fieldContext_CreateTimelineItem_lastEdit(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
+
+func (ec *executionContext) _CreateTimelineItem_edited(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_edited(ctx, field)
+	if err != nil {
 		return graphql.Null
-	case *bug.CreateTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._CreateTimelineItem(ctx, sel, obj)
-	case *bug.AddCommentTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._AddCommentTimelineItem(ctx, sel, obj)
-	case bug.LabelChangeTimelineItem:
-		return ec._LabelChangeTimelineItem(ctx, sel, &obj)
-	case *bug.LabelChangeTimelineItem:
-		if obj == nil {
-			return graphql.Null
-		}
-		return ec._LabelChangeTimelineItem(ctx, sel, obj)
-	case bug.SetStatusTimelineItem:
-		return ec._SetStatusTimelineItem(ctx, sel, &obj)
-	case *bug.SetStatusTimelineItem:
-		if obj == nil {
-			return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-		return ec._SetStatusTimelineItem(ctx, sel, obj)
-	case bug.SetTitleTimelineItem:
-		return ec._SetTitleTimelineItem(ctx, sel, &obj)
-	case *bug.SetTitleTimelineItem:
-		if obj == nil {
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edited(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
 			return graphql.Null
 		}
-		return ec._SetTitleTimelineItem(ctx, sel, obj)
-	default:
-		panic(fmt.Errorf("unexpected type %T", obj))
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
+		return graphql.Null
 	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
 }
 
-// endregion ************************** interface.gotpl ***************************
-
-// region    **************************** object.gotpl ****************************
-
-var addCommentAndCloseBugPayloadImplementors = []string{"AddCommentAndCloseBugPayload"}
-
-func (ec *executionContext) _AddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet, obj *models.AddCommentAndCloseBugPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentAndCloseBugPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("AddCommentAndCloseBugPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndCloseBugPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndCloseBugPayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "commentOperation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndCloseBugPayload_commentOperation(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "statusOperation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndCloseBugPayload_statusOperation(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_CreateTimelineItem_edited(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _CreateTimelineItem_history(ctx context.Context, field graphql.CollectedField, obj *bug.CreateTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_CreateTimelineItem_history(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.History, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]bug.CommentHistoryStep)
+		fc.Result = res
+		return ec.marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx, field.Selections, res)
 }
 
-var addCommentAndReopenBugPayloadImplementors = []string{"AddCommentAndReopenBugPayload"}
-
-func (ec *executionContext) _AddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet, obj *models.AddCommentAndReopenBugPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentAndReopenBugPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("AddCommentAndReopenBugPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndReopenBugPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndReopenBugPayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "commentOperation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndReopenBugPayload_commentOperation(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "statusOperation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentAndReopenBugPayload_statusOperation(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_CreateTimelineItem_history(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "CreateTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "message":
+							return ec.fieldContext_CommentHistoryStep_message(ctx, field)
+						case "date":
+							return ec.fieldContext_CommentHistoryStep_date(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CommentHistoryStep", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _EditCommentOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_id(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.EditCommentOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var addCommentOperationImplementors = []string{"AddCommentOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _AddCommentOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.AddCommentOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("AddCommentOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
+func (ec *executionContext) fieldContext_EditCommentOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _EditCommentOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.EditCommentOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_EditCommentOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			})
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentOperation_message(ctx, field, obj)
+func (ec *executionContext) _EditCommentOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.EditCommentOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_EditCommentOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentOperation_files(ctx, field, obj)
+func (ec *executionContext) _EditCommentOperation_target(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_target(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.EditCommentOperation().Target(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_EditCommentOperation_target(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) _EditCommentOperation_message(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_message(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Message, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var addCommentPayloadImplementors = []string{"AddCommentPayload"}
-
-func (ec *executionContext) _AddCommentPayload(ctx context.Context, sel ast.SelectionSet, obj *models.AddCommentPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("AddCommentPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentPayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_EditCommentOperation_message(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentPayload_operation(ctx, field, obj)
+func (ec *executionContext) _EditCommentOperation_files(ctx context.Context, field graphql.CollectedField, obj *bug.EditCommentOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentOperation_files(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Files, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]repository.Hash)
+		fc.Result = res
+		return ec.marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_EditCommentOperation_files(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Hash does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _EditCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentPayload_clientMutationId(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var addCommentTimelineItemImplementors = []string{"AddCommentTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) fieldContext_EditCommentPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _AddCommentTimelineItem(ctx context.Context, sel ast.SelectionSet, obj *bug.AddCommentTimelineItem) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentTimelineItemImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("AddCommentTimelineItem")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentTimelineItem_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _EditCommentPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentPayload_bug(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentTimelineItem_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_EditCommentPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentTimelineItem_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "messageIsEmpty":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentTimelineItem_messageIsEmpty(ctx, field, obj)
+func (ec *executionContext) _EditCommentPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.EditCommentPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_EditCommentPayload_operation(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.EditCommentOperation)
+		fc.Result = res
+		return ec.marshalNEditCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐEditCommentOperation(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_EditCommentPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "EditCommentPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_EditCommentOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_EditCommentOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_EditCommentOperation_date(ctx, field)
+						case "target":
+							return ec.fieldContext_EditCommentOperation_target(ctx, field)
+						case "message":
+							return ec.fieldContext_EditCommentOperation_message(ctx, field)
+						case "files":
+							return ec.fieldContext_EditCommentOperation_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type EditCommentOperation", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentTimelineItem_files(ctx, field, obj)
+func (ec *executionContext) _Identity_id(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_id(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Identity().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_Identity_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) _Identity_humanId(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_humanId(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Identity().HumanID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
-		case "createdAt":
-			field := field
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentTimelineItem_createdAt(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
+func (ec *executionContext) fieldContext_Identity_humanId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) _Identity_name(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalOString2string(ctx, field.Selections, res)
+}
 
-			})
-		case "lastEdit":
-			field := field
+func (ec *executionContext) fieldContext_Identity_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._AddCommentTimelineItem_lastEdit(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
+func (ec *executionContext) _Identity_email(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_email(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Email()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalOString2string(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) fieldContext_Identity_email(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			})
-		case "edited":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentTimelineItem_edited(ctx, field, obj)
-			}
+func (ec *executionContext) _Identity_login(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_login(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Login()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalOString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_Identity_login(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "history":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._AddCommentTimelineItem_history(ctx, field, obj)
+func (ec *executionContext) _Identity_displayName(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_displayName(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.DisplayName(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_Identity_displayName(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _Identity_avatarUrl(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_avatarUrl(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.AvatarUrl()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalOString2string(ctx, field.Selections, res)
 }
 
-var bugImplementors = []string{"Bug", "Authored"}
+func (ec *executionContext) fieldContext_Identity_avatarUrl(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _Bug(ctx context.Context, sel ast.SelectionSet, obj models.BugWrapper) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, bugImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Bug")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Identity_isProtected(ctx context.Context, field graphql.CollectedField, obj models.IdentityWrapper) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Identity_isProtected(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.IsProtected()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "humanId":
-			field := field
+func (ec *executionContext) fieldContext_Identity_isProtected(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Identity",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_humanId(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _IdentityConnection_edges(ctx context.Context, field graphql.CollectedField, obj *connections.Result[NodeT any]) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityConnection_edges(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.IdentityConnection().Edges(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]*models.IdentityEdge)
+		fc.Result = res
+		return ec.marshalNIdentityEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdgeᚄ(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "status":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_status(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_IdentityConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityConnection",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_IdentityEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_IdentityEdge_node(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "title":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Bug_title(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type IdentityEdge", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "labels":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Bug_labels(ctx, field, obj)
+func (ec *executionContext) _IdentityConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *connections.Result[NodeT any]) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityConnection_nodes(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.IdentityConnection().Nodes(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapperᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_IdentityConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityConnection",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "author":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Bug_author(ctx, field, obj)
+func (ec *executionContext) _IdentityConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *connections.Result[NodeT any]) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityConnection_pageInfo(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_IdentityConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "createdAt":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Bug_createdAt(ctx, field, obj)
+func (ec *executionContext) _IdentityConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *connections.Result[NodeT any]) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityConnection_totalCount(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_IdentityConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "lastEdit":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Bug_lastEdit(ctx, field, obj)
+func (ec *executionContext) _IdentityEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.IdentityEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityEdge_cursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "actors":
-			field := field
+func (ec *executionContext) fieldContext_IdentityEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_actors(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _IdentityEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.IdentityEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_IdentityEdge_node(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "participants":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_participants(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_IdentityEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "IdentityEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "comments":
-			field := field
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_comments(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Label_name(ctx context.Context, field graphql.CollectedField, obj *bug.Label) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Label_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Label().Name(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "timeline":
-			field := field
+func (ec *executionContext) fieldContext_Label_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Label",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_timeline(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Label_color(ctx context.Context, field graphql.CollectedField, obj *bug.Label) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Label_color(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Label().Color(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*color.RGBA)
+		fc.Result = res
+		return ec.marshalNColor2ᚖimageᚋcolorᚐRGBA(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "operations":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Bug_operations(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Label_color(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Label",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "R":
+							return ec.fieldContext_Color_R(ctx, field)
+						case "G":
+							return ec.fieldContext_Color_G(ctx, field)
+						case "B":
+							return ec.fieldContext_Color_B(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Color", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelChangeOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeOperation_id(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var bugConnectionImplementors = []string{"BugConnection"}
-
-func (ec *executionContext) _BugConnection(ctx context.Context, sel ast.SelectionSet, obj *models.BugConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, bugConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("BugConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugConnection_edges(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugConnection_nodes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugConnection_pageInfo(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugConnection_totalCount(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelChangeOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeOperation_author(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-var bugEdgeImplementors = []string{"BugEdge"}
-
-func (ec *executionContext) _BugEdge(ctx context.Context, sel ast.SelectionSet, obj *models.BugEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, bugEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("BugEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugEdge_cursor(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._BugEdge_node(ctx, field, obj)
+func (ec *executionContext) _LabelChangeOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeOperation_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelChangeOperation_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeOperation_added(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Added, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
 }
 
-var changeLabelPayloadImplementors = []string{"ChangeLabelPayload"}
+func (ec *executionContext) fieldContext_LabelChangeOperation_added(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _ChangeLabelPayload(ctx context.Context, sel ast.SelectionSet, obj *models.ChangeLabelPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, changeLabelPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("ChangeLabelPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._ChangeLabelPayload_clientMutationId(ctx, field, obj)
+func (ec *executionContext) _LabelChangeOperation_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeOperation_removed(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Removed, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeOperation_removed(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._ChangeLabelPayload_bug(ctx, field, obj)
+func (ec *executionContext) _LabelChangeResult_label(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeResult) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeResult_label(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Label, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeResult_label(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeResult",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._ChangeLabelPayload_operation(ctx, field, obj)
+func (ec *executionContext) _LabelChangeResult_status(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeResult) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeResult_status(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeResult().Status(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.LabelChangeStatus)
+		fc.Result = res
+		return ec.marshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeResult_status(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeResult",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type LabelChangeStatus does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "results":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._ChangeLabelPayload_results(ctx, field, obj)
+func (ec *executionContext) _LabelChangeTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeTimelineItem_id(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeTimelineItem().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeTimelineItem_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) _LabelChangeTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeTimelineItem_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeTimelineItem().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-var closeBugPayloadImplementors = []string{"CloseBugPayload"}
-
-func (ec *executionContext) _CloseBugPayload(ctx context.Context, sel ast.SelectionSet, obj *models.CloseBugPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, closeBugPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CloseBugPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CloseBugPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CloseBugPayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeTimelineItem_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CloseBugPayload_operation(ctx, field, obj)
+func (ec *executionContext) _LabelChangeTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeTimelineItem_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.LabelChangeTimelineItem().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelChangeTimelineItem_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelChangeTimelineItem_added(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeTimelineItem_added(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Added, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
 }
 
-var colorImplementors = []string{"Color"}
-
-func (ec *executionContext) _Color(ctx context.Context, sel ast.SelectionSet, obj *color.RGBA) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, colorImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Color")
-		case "R":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Color_R(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_LabelChangeTimelineItem_added(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "G":
-			field := field
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Color_G(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _LabelChangeTimelineItem_removed(ctx context.Context, field graphql.CollectedField, obj *bug.LabelChangeTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelChangeTimelineItem_removed(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Removed, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "B":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Color_B(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_LabelChangeTimelineItem_removed(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelChangeTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelConnection_edges(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edges, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]*models.LabelEdge)
+		fc.Result = res
+		return ec.marshalNLabelEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdgeᚄ(ctx, field.Selections, res)
 }
 
-var commentImplementors = []string{"Comment", "Authored"}
-
-func (ec *executionContext) _Comment(ctx context.Context, sel ast.SelectionSet, obj *bug.Comment) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, commentImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Comment")
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Comment_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_LabelConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_LabelEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_LabelEdge_node(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Comment_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Comment_files(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type LabelEdge", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelConnection_nodes(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Nodes, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx, field.Selections, res)
 }
 
-var commentConnectionImplementors = []string{"CommentConnection"}
-
-func (ec *executionContext) _CommentConnection(ctx context.Context, sel ast.SelectionSet, obj *models.CommentConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, commentConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CommentConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentConnection_edges(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentConnection_nodes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentConnection_pageInfo(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentConnection_totalCount(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _LabelConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelConnection_pageInfo(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
 }
 
-var commentEdgeImplementors = []string{"CommentEdge"}
-
-func (ec *executionContext) _CommentEdge(ctx context.Context, sel ast.SelectionSet, obj *models.CommentEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, commentEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CommentEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentEdge_cursor(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentEdge_node(ctx, field, obj)
+func (ec *executionContext) _LabelConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.LabelConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelConnection_totalCount(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) _LabelEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.LabelEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelEdge_cursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var commentHistoryStepImplementors = []string{"CommentHistoryStep"}
-
-func (ec *executionContext) _CommentHistoryStep(ctx context.Context, sel ast.SelectionSet, obj *bug.CommentHistoryStep) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, commentHistoryStepImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CommentHistoryStep")
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CommentHistoryStep_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_LabelEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) _LabelEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.LabelEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_LabelEdge_node(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
-		case "date":
-			field := field
+		return graphql.Null
+	}
+		res := resTmp.(bug.Label)
+		fc.Result = res
+		return ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, field.Selections, res)
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CommentHistoryStep_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_LabelEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "LabelEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Label_name(ctx, field)
+						case "color":
+							return ec.fieldContext_Label_color(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Label", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _Mutation_newBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_newBug(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().NewBug(rctx, fc.Args["input"].(models.NewBugInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.NewBugPayload)
+		fc.Result = res
+		return ec.marshalNNewBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx, field.Selections, res)
 }
 
-var createOperationImplementors = []string{"CreateOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _CreateOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.CreateOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, createOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CreateOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_newBug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_NewBugPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_NewBugPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_NewBugPayload_operation(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type NewBugPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_newBug_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Mutation_addComment(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_addComment(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().AddComment(rctx, fc.Args["input"].(models.AddCommentInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.AddCommentPayload)
+		fc.Result = res
+		return ec.marshalNAddCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_addComment(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_AddCommentPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_AddCommentPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_AddCommentPayload_operation(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "title":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateOperation_title(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateOperation_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateOperation_files(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_addComment_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Mutation_addCommentAndClose(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_addCommentAndClose(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().AddCommentAndClose(rctx, fc.Args["input"].(models.AddCommentAndCloseBugInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.AddCommentAndCloseBugPayload)
+		fc.Result = res
+		return ec.marshalNAddCommentAndCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx, field.Selections, res)
 }
 
-var createTimelineItemImplementors = []string{"CreateTimelineItem", "TimelineItem", "Authored"}
-
-func (ec *executionContext) _CreateTimelineItem(ctx context.Context, sel ast.SelectionSet, obj *bug.CreateTimelineItem) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, createTimelineItemImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("CreateTimelineItem")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateTimelineItem_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateTimelineItem_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_addCommentAndClose(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_AddCommentAndCloseBugPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_AddCommentAndCloseBugPayload_bug(ctx, field)
+						case "commentOperation":
+							return ec.fieldContext_AddCommentAndCloseBugPayload_commentOperation(ctx, field)
+						case "statusOperation":
+							return ec.fieldContext_AddCommentAndCloseBugPayload_statusOperation(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateTimelineItem_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "messageIsEmpty":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateTimelineItem_messageIsEmpty(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateTimelineItem_files(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentAndCloseBugPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		case "createdAt":
-			field := field
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_addCommentAndClose_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateTimelineItem_createdAt(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Mutation_addCommentAndReopen(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_addCommentAndReopen(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().AddCommentAndReopen(rctx, fc.Args["input"].(models.AddCommentAndReopenBugInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.AddCommentAndReopenBugPayload)
+		fc.Result = res
+		return ec.marshalNAddCommentAndReopenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "lastEdit":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._CreateTimelineItem_lastEdit(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_addCommentAndReopen(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_AddCommentAndReopenBugPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_AddCommentAndReopenBugPayload_bug(ctx, field)
+						case "commentOperation":
+							return ec.fieldContext_AddCommentAndReopenBugPayload_commentOperation(ctx, field)
+						case "statusOperation":
+							return ec.fieldContext_AddCommentAndReopenBugPayload_statusOperation(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "edited":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateTimelineItem_edited(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "history":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._CreateTimelineItem_history(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+				return nil, fmt.Errorf("no field named %q was found under type AddCommentAndReopenBugPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_addCommentAndReopen_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Mutation_editComment(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_editComment(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().EditComment(rctx, fc.Args["input"].(models.EditCommentInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.EditCommentPayload)
+		fc.Result = res
+		return ec.marshalNEditCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx, field.Selections, res)
 }
 
-var editCommentOperationImplementors = []string{"EditCommentOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _EditCommentOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.EditCommentOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, editCommentOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("EditCommentOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._EditCommentOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_editComment(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_EditCommentPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_EditCommentPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_EditCommentPayload_operation(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type EditCommentPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_editComment_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Mutation_changeLabels(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_changeLabels(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().ChangeLabels(rctx, fc.Args["input"].(*models.ChangeLabelInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.ChangeLabelPayload)
+		fc.Result = res
+		return ec.marshalNChangeLabelPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._EditCommentOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_changeLabels(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_ChangeLabelPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_ChangeLabelPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_ChangeLabelPayload_operation(ctx, field)
+						case "results":
+							return ec.fieldContext_ChangeLabelPayload_results(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type ChangeLabelPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_changeLabels_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._EditCommentOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Mutation_openBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_openBug(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().OpenBug(rctx, fc.Args["input"].(models.OpenBugInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.OpenBugPayload)
+		fc.Result = res
+		return ec.marshalNOpenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "target":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._EditCommentOperation_target(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Mutation_openBug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_OpenBugPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_OpenBugPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_OpenBugPayload_operation(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "message":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._EditCommentOperation_message(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "files":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._EditCommentOperation_files(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+				return nil, fmt.Errorf("no field named %q was found under type OpenBugPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_openBug_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Mutation_closeBug(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_closeBug(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().CloseBug(rctx, fc.Args["input"].(models.CloseBugInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.CloseBugPayload)
+		fc.Result = res
+		return ec.marshalNCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx, field.Selections, res)
 }
 
-var editCommentPayloadImplementors = []string{"EditCommentPayload"}
-
-func (ec *executionContext) _EditCommentPayload(ctx context.Context, sel ast.SelectionSet, obj *models.EditCommentPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, editCommentPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("EditCommentPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._EditCommentPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._EditCommentPayload_bug(ctx, field, obj)
+func (ec *executionContext) fieldContext_Mutation_closeBug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_CloseBugPayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_CloseBugPayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_CloseBugPayload_operation(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CloseBugPayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_closeBug_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._EditCommentPayload_operation(ctx, field, obj)
+func (ec *executionContext) _Mutation_setTitle(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Mutation_setTitle(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Mutation().SetTitle(rctx, fc.Args["input"].(models.SetTitleInput))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.SetTitlePayload)
+		fc.Result = res
+		return ec.marshalNSetTitlePayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
+func (ec *executionContext) fieldContext_Mutation_setTitle(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Mutation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "clientMutationId":
+							return ec.fieldContext_SetTitlePayload_clientMutationId(ctx, field)
+						case "bug":
+							return ec.fieldContext_SetTitlePayload_bug(ctx, field)
+						case "operation":
+							return ec.fieldContext_SetTitlePayload_operation(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetTitlePayload", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Mutation_setTitle_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _NewBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_NewBugPayload_clientMutationId(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var identityImplementors = []string{"Identity"}
+func (ec *executionContext) fieldContext_NewBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "NewBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _Identity(ctx context.Context, sel ast.SelectionSet, obj models.IdentityWrapper) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, identityImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Identity")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Identity_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _NewBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_NewBugPayload_bug(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "humanId":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Identity_humanId(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_NewBugPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "NewBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			})
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_name(ctx, field, obj)
+func (ec *executionContext) _NewBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.NewBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_NewBugPayload_operation(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.CreateOperation)
+		fc.Result = res
+		return ec.marshalNCreateOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCreateOperation(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_NewBugPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "NewBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_CreateOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_CreateOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_CreateOperation_date(ctx, field)
+						case "title":
+							return ec.fieldContext_CreateOperation_title(ctx, field)
+						case "message":
+							return ec.fieldContext_CreateOperation_message(ctx, field)
+						case "files":
+							return ec.fieldContext_CreateOperation_files(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type CreateOperation", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		case "email":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_email(ctx, field, obj)
-			}
+func (ec *executionContext) _OpenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OpenBugPayload_clientMutationId(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OpenBugPayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OpenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-		case "login":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_login(ctx, field, obj)
+func (ec *executionContext) _OpenBugPayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OpenBugPayload_bug(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OpenBugPayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OpenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		case "displayName":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_displayName(ctx, field, obj)
+func (ec *executionContext) _OpenBugPayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.OpenBugPayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OpenBugPayload_operation(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.SetStatusOperation)
+		fc.Result = res
+		return ec.marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OpenBugPayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OpenBugPayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_SetStatusOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_SetStatusOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_SetStatusOperation_date(ctx, field)
+						case "status":
+							return ec.fieldContext_SetStatusOperation_status(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetStatusOperation", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "avatarUrl":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_avatarUrl(ctx, field, obj)
+func (ec *executionContext) _OperationConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationConnection_edges(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edges, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]*models.OperationEdge)
+		fc.Result = res
+		return ec.marshalNOperationEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdgeᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OperationConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_OperationEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_OperationEdge_node(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type OperationEdge", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		case "isProtected":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Identity_isProtected(ctx, field, obj)
+func (ec *executionContext) _OperationConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationConnection_nodes(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Nodes, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]dag.Operation)
+		fc.Result = res
+		return ec.marshalNOperation2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋentityᚋdagᚐOperationᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OperationConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("FieldContext.Child cannot be called on type INTERFACE")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _OperationConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationConnection_pageInfo(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
 }
 
-var identityConnectionImplementors = []string{"IdentityConnection"}
+func (ec *executionContext) fieldContext_OperationConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _IdentityConnection(ctx context.Context, sel ast.SelectionSet, obj *models.IdentityConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, identityConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("IdentityConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityConnection_edges(ctx, field, obj)
+func (ec *executionContext) _OperationConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.OperationConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationConnection_totalCount(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OperationConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityConnection_nodes(ctx, field, obj)
+func (ec *executionContext) _OperationEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationEdge_cursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OperationEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityConnection_pageInfo(ctx, field, obj)
+func (ec *executionContext) _OperationEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.OperationEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_OperationEdge_node(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(dag.Operation)
+		fc.Result = res
+		return ec.marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋentityᚋdagᚐOperation(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_OperationEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "OperationEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("FieldContext.Child cannot be called on type INTERFACE")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityConnection_totalCount(ctx, field, obj)
+func (ec *executionContext) _PageInfo_hasNextPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.HasNextPage, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_PageInfo_hasNextPage(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "PageInfo",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _PageInfo_hasPreviousPage(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.HasPreviousPage, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
 }
 
-var identityEdgeImplementors = []string{"IdentityEdge"}
+func (ec *executionContext) fieldContext_PageInfo_hasPreviousPage(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "PageInfo",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _IdentityEdge(ctx context.Context, sel ast.SelectionSet, obj *models.IdentityEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, identityEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("IdentityEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityEdge_cursor(ctx, field, obj)
+func (ec *executionContext) _PageInfo_startCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_PageInfo_startCursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.StartCursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_PageInfo_startCursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "PageInfo",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._IdentityEdge_node(ctx, field, obj)
+func (ec *executionContext) _PageInfo_endCursor(ctx context.Context, field graphql.CollectedField, obj *models.PageInfo) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_PageInfo_endCursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.EndCursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_PageInfo_endCursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "PageInfo",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) _Query_repository(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Query_repository(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Query().Repository(rctx, fc.Args["ref"].(*string))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.Repository)
+		fc.Result = res
+		return ec.marshalORepository2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐRepository(ctx, field.Selections, res)
 }
 
-var labelImplementors = []string{"Label"}
-
-func (ec *executionContext) _Label(ctx context.Context, sel ast.SelectionSet, obj *bug.Label) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Label")
-		case "name":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Label_name(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "color":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Label_color(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Query_repository(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Query",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext_Repository_name(ctx, field)
+						case "allBugs":
+							return ec.fieldContext_Repository_allBugs(ctx, field)
+						case "bug":
+							return ec.fieldContext_Repository_bug(ctx, field)
+						case "allIdentities":
+							return ec.fieldContext_Repository_allIdentities(ctx, field)
+						case "identity":
+							return ec.fieldContext_Repository_identity(ctx, field)
+						case "userIdentity":
+							return ec.fieldContext_Repository_userIdentity(ctx, field)
+						case "validLabels":
+							return ec.fieldContext_Repository_validLabels(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type Repository", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Query_repository_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Query___type(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Query___type(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.introspectType(fc.Args["name"].(string))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
 }
 
-var labelChangeOperationImplementors = []string{"LabelChangeOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _LabelChangeOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.LabelChangeOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("LabelChangeOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Query___type(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Query",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Query___type_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
+func (ec *executionContext) _Query___schema(ctx context.Context, field graphql.CollectedField) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Query___schema(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.introspectSchema()
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(*introspection.Schema)
+		fc.Result = res
+		return ec.marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema(ctx, field.Selections, res)
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Query___schema(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Query",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "description":
+							return ec.fieldContext___Schema_description(ctx, field)
+						case "types":
+							return ec.fieldContext___Schema_types(ctx, field)
+						case "queryType":
+							return ec.fieldContext___Schema_queryType(ctx, field)
+						case "mutationType":
+							return ec.fieldContext___Schema_mutationType(ctx, field)
+						case "subscriptionType":
+							return ec.fieldContext___Schema_subscriptionType(ctx, field)
+						case "directives":
+							return ec.fieldContext___Schema_directives(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "added":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelChangeOperation_added(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "removed":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelChangeOperation_removed(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type __Schema", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _Repository_name(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_name(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().Name(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var labelChangeResultImplementors = []string{"LabelChangeResult"}
-
-func (ec *executionContext) _LabelChangeResult(ctx context.Context, sel ast.SelectionSet, obj *bug.LabelChangeResult) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeResultImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("LabelChangeResult")
-		case "label":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelChangeResult_label(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_Repository_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) _Repository_allBugs(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_allBugs(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().AllBugs(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int), fc.Args["query"].(*string))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
-		case "status":
-			field := field
+		return graphql.Null
+	}
+		res := resTmp.(*models.BugConnection)
+		fc.Result = res
+		return ec.marshalNBugConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx, field.Selections, res)
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeResult_status(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Repository_allBugs(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_BugConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_BugConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_BugConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_BugConnection_totalCount(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type BugConnection", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Repository_allBugs_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Repository_bug(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_bug(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().Bug(rctx, obj, fc.Args["prefix"].(string))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalOBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
 }
 
-var labelChangeTimelineItemImplementors = []string{"LabelChangeTimelineItem", "TimelineItem", "Authored"}
-
-func (ec *executionContext) _LabelChangeTimelineItem(ctx context.Context, sel ast.SelectionSet, obj *bug.LabelChangeTimelineItem) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeTimelineItemImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("LabelChangeTimelineItem")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeTimelineItem_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Repository_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
 				}
-				return res
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Repository_bug_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeTimelineItem_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) _Repository_allIdentities(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_allIdentities(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().AllIdentities(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*connections.Result[NodeT any])
+		fc.Result = res
+		return ec.marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋconnectionsᚐResult(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._LabelChangeTimelineItem_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Repository_allIdentities(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_IdentityConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_IdentityConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_IdentityConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_IdentityConnection_totalCount(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "added":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelChangeTimelineItem_added(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "removed":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelChangeTimelineItem_removed(ctx, field, obj)
+				return nil, fmt.Errorf("no field named %q was found under type IdentityConnection", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Repository_allIdentities_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) _Repository_identity(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_identity(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().Identity(rctx, obj, fc.Args["prefix"].(string))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext_Repository_identity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Repository_identity_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _Repository_userIdentity(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_userIdentity(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().UserIdentity(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
 }
 
-var labelConnectionImplementors = []string{"LabelConnection"}
-
-func (ec *executionContext) _LabelConnection(ctx context.Context, sel ast.SelectionSet, obj *models.LabelConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("LabelConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelConnection_edges(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelConnection_nodes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelConnection_pageInfo(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_Repository_userIdentity(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelConnection_totalCount(ctx, field, obj)
+func (ec *executionContext) _Repository_validLabels(ctx context.Context, field graphql.CollectedField, obj *models.Repository) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_Repository_validLabels(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.Repository().ValidLabels(rctx, obj, fc.Args["after"].(*string), fc.Args["before"].(*string), fc.Args["first"].(*int), fc.Args["last"].(*int))
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*models.LabelConnection)
+		fc.Result = res
+		return ec.marshalNLabelConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
+func (ec *executionContext) fieldContext_Repository_validLabels(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "Repository",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "edges":
+							return ec.fieldContext_LabelConnection_edges(ctx, field)
+						case "nodes":
+							return ec.fieldContext_LabelConnection_nodes(ctx, field)
+						case "pageInfo":
+							return ec.fieldContext_LabelConnection_pageInfo(ctx, field)
+						case "totalCount":
+							return ec.fieldContext_LabelConnection_totalCount(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type LabelConnection", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field_Repository_validLabels_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) _SetStatusOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusOperation_id(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var labelEdgeImplementors = []string{"LabelEdge"}
+func (ec *executionContext) fieldContext_SetStatusOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _LabelEdge(ctx context.Context, sel ast.SelectionSet, obj *models.LabelEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, labelEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("LabelEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelEdge_cursor(ctx, field, obj)
+func (ec *executionContext) _SetStatusOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusOperation_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetStatusOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._LabelEdge_node(ctx, field, obj)
+func (ec *executionContext) _SetStatusOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusOperation_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetStatusOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _SetStatusOperation_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusOperation_status(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusOperation().Status(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.Status)
+		fc.Result = res
+		return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
 }
 
-var mutationImplementors = []string{"Mutation"}
-
-func (ec *executionContext) _Mutation(ctx context.Context, sel ast.SelectionSet) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, mutationImplementors)
-	ctx = graphql.WithFieldContext(ctx, &graphql.FieldContext{
-		Object: "Mutation",
-	})
+func (ec *executionContext) fieldContext_SetStatusOperation_status(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Status does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		innerCtx := graphql.WithRootFieldContext(ctx, &graphql.RootFieldContext{
-			Object: field.Name,
-			Field:  field,
+func (ec *executionContext) _SetStatusTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusTimelineItem_id(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusTimelineItem().ID(rctx, obj)
 		})
-
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Mutation")
-		case "newBug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_newBug(ctx, field)
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetStatusTimelineItem_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "addComment":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_addComment(ctx, field)
+func (ec *executionContext) _SetStatusTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusTimelineItem_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusTimelineItem().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetStatusTimelineItem_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "addCommentAndClose":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_addCommentAndClose(ctx, field)
+func (ec *executionContext) _SetStatusTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusTimelineItem_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusTimelineItem().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetStatusTimelineItem_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "addCommentAndReopen":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_addCommentAndReopen(ctx, field)
+func (ec *executionContext) _SetStatusTimelineItem_status(ctx context.Context, field graphql.CollectedField, obj *bug.SetStatusTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetStatusTimelineItem_status(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetStatusTimelineItem().Status(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.Status)
+		fc.Result = res
+		return ec.marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetStatusTimelineItem_status(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetStatusTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Status does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "editComment":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_editComment(ctx, field)
+func (ec *executionContext) _SetTitleOperation_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleOperation_id(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleOperation().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetTitleOperation_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "changeLabels":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_changeLabels(ctx, field)
+func (ec *executionContext) _SetTitleOperation_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleOperation_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleOperation().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetTitleOperation_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "openBug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_openBug(ctx, field)
+func (ec *executionContext) _SetTitleOperation_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleOperation_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleOperation().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetTitleOperation_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleOperation",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "closeBug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_closeBug(ctx, field)
+func (ec *executionContext) _SetTitleOperation_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleOperation_title(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Title, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetTitleOperation_title(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "setTitle":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Mutation_setTitle(ctx, field)
+func (ec *executionContext) _SetTitleOperation_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleOperation) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleOperation_was(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Was, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
+func (ec *executionContext) fieldContext_SetTitleOperation_was(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleOperation",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _SetTitlePayload_clientMutationId(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitlePayload_clientMutationId(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.ClientMutationID, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var newBugPayloadImplementors = []string{"NewBugPayload"}
-
-func (ec *executionContext) _NewBugPayload(ctx context.Context, sel ast.SelectionSet, obj *models.NewBugPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, newBugPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("NewBugPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._NewBugPayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._NewBugPayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._NewBugPayload_operation(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitlePayload_clientMutationId(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitlePayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _SetTitlePayload_bug(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitlePayload_bug(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Bug, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(models.BugWrapper)
+		fc.Result = res
+		return ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, field.Selections, res)
 }
 
-var openBugPayloadImplementors = []string{"OpenBugPayload"}
+func (ec *executionContext) fieldContext_SetTitlePayload_bug(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitlePayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Bug_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Bug_humanId(ctx, field)
+						case "status":
+							return ec.fieldContext_Bug_status(ctx, field)
+						case "title":
+							return ec.fieldContext_Bug_title(ctx, field)
+						case "labels":
+							return ec.fieldContext_Bug_labels(ctx, field)
+						case "author":
+							return ec.fieldContext_Bug_author(ctx, field)
+						case "createdAt":
+							return ec.fieldContext_Bug_createdAt(ctx, field)
+						case "lastEdit":
+							return ec.fieldContext_Bug_lastEdit(ctx, field)
+						case "actors":
+							return ec.fieldContext_Bug_actors(ctx, field)
+						case "participants":
+							return ec.fieldContext_Bug_participants(ctx, field)
+						case "comments":
+							return ec.fieldContext_Bug_comments(ctx, field)
+						case "timeline":
+							return ec.fieldContext_Bug_timeline(ctx, field)
+						case "operations":
+							return ec.fieldContext_Bug_operations(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Bug", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _OpenBugPayload(ctx context.Context, sel ast.SelectionSet, obj *models.OpenBugPayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, openBugPayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("OpenBugPayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OpenBugPayload_clientMutationId(ctx, field, obj)
+func (ec *executionContext) _SetTitlePayload_operation(ctx context.Context, field graphql.CollectedField, obj *models.SetTitlePayload) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitlePayload_operation(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Operation, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*bug.SetTitleOperation)
+		fc.Result = res
+		return ec.marshalNSetTitleOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetTitleOperation(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitlePayload_operation(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitlePayload",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_SetTitleOperation_id(ctx, field)
+						case "author":
+							return ec.fieldContext_SetTitleOperation_author(ctx, field)
+						case "date":
+							return ec.fieldContext_SetTitleOperation_date(ctx, field)
+						case "title":
+							return ec.fieldContext_SetTitleOperation_title(ctx, field)
+						case "was":
+							return ec.fieldContext_SetTitleOperation_was(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type SetTitleOperation", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OpenBugPayload_bug(ctx, field, obj)
+func (ec *executionContext) _SetTitleTimelineItem_id(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleTimelineItem_id(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleTimelineItem().ID(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitleTimelineItem_id(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OpenBugPayload_operation(ctx, field, obj)
+func (ec *executionContext) _SetTitleTimelineItem_author(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleTimelineItem_author(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleTimelineItem().Author(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(models.IdentityWrapper)
+		fc.Result = res
+		return ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitleTimelineItem_author(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "id":
+							return ec.fieldContext_Identity_id(ctx, field)
+						case "humanId":
+							return ec.fieldContext_Identity_humanId(ctx, field)
+						case "name":
+							return ec.fieldContext_Identity_name(ctx, field)
+						case "email":
+							return ec.fieldContext_Identity_email(ctx, field)
+						case "login":
+							return ec.fieldContext_Identity_login(ctx, field)
+						case "displayName":
+							return ec.fieldContext_Identity_displayName(ctx, field)
+						case "avatarUrl":
+							return ec.fieldContext_Identity_avatarUrl(ctx, field)
+						case "isProtected":
+							return ec.fieldContext_Identity_isProtected(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type Identity", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) _SetTitleTimelineItem_date(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleTimelineItem_date(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return ec.resolvers.SetTitleTimelineItem().Date(rctx, obj)
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*time.Time)
+		fc.Result = res
+		return ec.marshalNTime2ᚖtimeᚐTime(ctx, field.Selections, res)
 }
 
-var operationConnectionImplementors = []string{"OperationConnection"}
-
-func (ec *executionContext) _OperationConnection(ctx context.Context, sel ast.SelectionSet, obj *models.OperationConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, operationConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("OperationConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationConnection_edges(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationConnection_nodes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationConnection_pageInfo(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitleTimelineItem_date(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleTimelineItem",
+		Field: field,
+		IsMethod: true,
+		IsResolver: true,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Time does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationConnection_totalCount(ctx, field, obj)
+func (ec *executionContext) _SetTitleTimelineItem_title(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleTimelineItem_title(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Title, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_SetTitleTimelineItem_title(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _SetTitleTimelineItem_was(ctx context.Context, field graphql.CollectedField, obj *bug.SetTitleTimelineItem) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_SetTitleTimelineItem_was(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Was, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
 }
 
-var operationEdgeImplementors = []string{"OperationEdge"}
+func (ec *executionContext) fieldContext_SetTitleTimelineItem_was(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "SetTitleTimelineItem",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _OperationEdge(ctx context.Context, sel ast.SelectionSet, obj *models.OperationEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, operationEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("OperationEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationEdge_cursor(ctx, field, obj)
+func (ec *executionContext) _TimelineItemConnection_edges(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemConnection_edges(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Edges, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]*models.TimelineItemEdge)
+		fc.Result = res
+		return ec.marshalNTimelineItemEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdgeᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_TimelineItemConnection_edges(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "cursor":
+							return ec.fieldContext_TimelineItemEdge_cursor(ctx, field)
+						case "node":
+							return ec.fieldContext_TimelineItemEdge_node(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type TimelineItemEdge", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._OperationEdge_node(ctx, field, obj)
+func (ec *executionContext) _TimelineItemConnection_nodes(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemConnection_nodes(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Nodes, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]bug.TimelineItem)
+		fc.Result = res
+		return ec.marshalNTimelineItem2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItemᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_TimelineItemConnection_nodes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("FieldContext.Child cannot be called on type INTERFACE")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) _TimelineItemConnection_pageInfo(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemConnection_pageInfo(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PageInfo, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*models.PageInfo)
+		fc.Result = res
+		return ec.marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx, field.Selections, res)
 }
 
-var pageInfoImplementors = []string{"PageInfo"}
+func (ec *executionContext) fieldContext_TimelineItemConnection_pageInfo(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "hasNextPage":
+							return ec.fieldContext_PageInfo_hasNextPage(ctx, field)
+						case "hasPreviousPage":
+							return ec.fieldContext_PageInfo_hasPreviousPage(ctx, field)
+						case "startCursor":
+							return ec.fieldContext_PageInfo_startCursor(ctx, field)
+						case "endCursor":
+							return ec.fieldContext_PageInfo_endCursor(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type PageInfo", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-func (ec *executionContext) _PageInfo(ctx context.Context, sel ast.SelectionSet, obj *models.PageInfo) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, pageInfoImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("PageInfo")
-		case "hasNextPage":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._PageInfo_hasNextPage(ctx, field, obj)
+func (ec *executionContext) _TimelineItemConnection_totalCount(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemConnection) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemConnection_totalCount(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.TotalCount, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(int)
+		fc.Result = res
+		return ec.marshalNInt2int(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_TimelineItemConnection_totalCount(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemConnection",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Int does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "hasPreviousPage":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._PageInfo_hasPreviousPage(ctx, field, obj)
+func (ec *executionContext) _TimelineItemEdge_cursor(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemEdge_cursor(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Cursor, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_TimelineItemEdge_cursor(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "startCursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._PageInfo_startCursor(ctx, field, obj)
+func (ec *executionContext) _TimelineItemEdge_node(ctx context.Context, field graphql.CollectedField, obj *models.TimelineItemEdge) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext_TimelineItemEdge_node(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Node, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bug.TimelineItem)
+		fc.Result = res
+		return ec.marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext_TimelineItemEdge_node(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "TimelineItemEdge",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("FieldContext.Child cannot be called on type INTERFACE")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "endCursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._PageInfo_endCursor(ctx, field, obj)
+func (ec *executionContext) ___Directive_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Directive_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Directive_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Directive",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+func (ec *executionContext) ___Directive_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Directive_description(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var queryImplementors = []string{"Query"}
-
-func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, queryImplementors)
-	ctx = graphql.WithFieldContext(ctx, &graphql.FieldContext{
-		Object: "Query",
-	})
+func (ec *executionContext) fieldContext___Directive_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Directive",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		innerCtx := graphql.WithRootFieldContext(ctx, &graphql.RootFieldContext{
-			Object: field.Name,
-			Field:  field,
+func (ec *executionContext) ___Directive_locations(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Directive_locations(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Locations, nil
 		})
-
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Query")
-		case "repository":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Query_repository(ctx, field)
-				return res
-			}
-
-			rrm := func(ctx context.Context) graphql.Marshaler {
-				return ec.OperationContext.RootResolverMiddleware(ctx, innerFunc)
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return rrm(innerCtx)
-			})
-		case "__type":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Query___type(ctx, field)
-			}
-
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
-
-		case "__schema":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._Query___schema(ctx, field)
-			}
-
-			out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, innerFunc)
-
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
-	}
-	out.Dispatch()
-	if invalids > 0 {
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]string)
+		fc.Result = res
+		return ec.marshalN__DirectiveLocation2ᚕstringᚄ(ctx, field.Selections, res)
 }
 
-var repositoryImplementors = []string{"Repository"}
-
-func (ec *executionContext) _Repository(ctx context.Context, sel ast.SelectionSet, obj *models.Repository) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, repositoryImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("Repository")
-		case "name":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_name(ctx, field, obj)
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "allBugs":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_allBugs(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "bug":
-			field := field
+func (ec *executionContext) fieldContext___Directive_locations(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Directive",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type __DirectiveLocation does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_bug(ctx, field, obj)
-				return res
+func (ec *executionContext) ___Directive_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Directive_args(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Args, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]introspection.InputValue)
+		fc.Result = res
+		return ec.marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "allIdentities":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_allIdentities(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext___Directive_args(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Directive",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___InputValue_name(ctx, field)
+						case "description":
+							return ec.fieldContext___InputValue_description(ctx, field)
+						case "type":
+							return ec.fieldContext___InputValue_type(ctx, field)
+						case "defaultValue":
+							return ec.fieldContext___InputValue_defaultValue(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "identity":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_identity(ctx, field, obj)
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "userIdentity":
-			field := field
+				return nil, fmt.Errorf("no field named %q was found under type __InputValue", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_userIdentity(ctx, field, obj)
-				return res
+func (ec *executionContext) ___Directive_isRepeatable(ctx context.Context, field graphql.CollectedField, obj *introspection.Directive) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Directive_isRepeatable(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.IsRepeatable, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "validLabels":
-			field := field
+func (ec *executionContext) fieldContext___Directive_isRepeatable(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Directive",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._Repository_validLabels(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) ___EnumValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___EnumValue_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) fieldContext___EnumValue_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__EnumValue",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___EnumValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___EnumValue_description(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var setStatusOperationImplementors = []string{"SetStatusOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _SetStatusOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.SetStatusOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, setStatusOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("SetStatusOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
+func (ec *executionContext) fieldContext___EnumValue_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__EnumValue",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) ___EnumValue_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___EnumValue_isDeprecated(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.IsDeprecated(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
+func (ec *executionContext) fieldContext___EnumValue_isDeprecated(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__EnumValue",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) ___EnumValue_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.EnumValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___EnumValue_deprecationReason(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.DeprecationReason(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+		return graphql.Null
+	}
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
+}
 
-			})
-		case "status":
-			field := field
+func (ec *executionContext) fieldContext___EnumValue_deprecationReason(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__EnumValue",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusOperation_status(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) ___Field_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) fieldContext___Field_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Field_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_description(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var setStatusTimelineItemImplementors = []string{"SetStatusTimelineItem", "TimelineItem", "Authored"}
-
-func (ec *executionContext) _SetStatusTimelineItem(ctx context.Context, sel ast.SelectionSet, obj *bug.SetStatusTimelineItem) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, setStatusTimelineItemImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("SetStatusTimelineItem")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusTimelineItem_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusTimelineItem_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusTimelineItem_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "status":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetStatusTimelineItem_status(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
+func (ec *executionContext) fieldContext___Field_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			})
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Field_args(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_args(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Args, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]introspection.InputValue)
+		fc.Result = res
+		return ec.marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
 }
 
-var setTitleOperationImplementors = []string{"SetTitleOperation", "Operation", "Authored"}
-
-func (ec *executionContext) _SetTitleOperation(ctx context.Context, sel ast.SelectionSet, obj *bug.SetTitleOperation) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, setTitleOperationImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("SetTitleOperation")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleOperation_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext___Field_args(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___InputValue_name(ctx, field)
+						case "description":
+							return ec.fieldContext___InputValue_description(ctx, field)
+						case "type":
+							return ec.fieldContext___InputValue_type(ctx, field)
+						case "defaultValue":
+							return ec.fieldContext___InputValue_defaultValue(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
+				return nil, fmt.Errorf("no field named %q was found under type __InputValue", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleOperation_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
+func (ec *executionContext) ___Field_type(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_type(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Type, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+}
 
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleOperation_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
+func (ec *executionContext) fieldContext___Field_type(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
 				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "title":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitleOperation_title(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "was":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitleOperation_was(ctx, field, obj)
+func (ec *executionContext) ___Field_isDeprecated(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_isDeprecated(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.IsDeprecated(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(bool)
+		fc.Result = res
+		return ec.marshalNBoolean2bool(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Field_isDeprecated(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type Boolean does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Field_deprecationReason(ctx context.Context, field graphql.CollectedField, obj *introspection.Field) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Field_deprecationReason(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.DeprecationReason(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var setTitlePayloadImplementors = []string{"SetTitlePayload"}
-
-func (ec *executionContext) _SetTitlePayload(ctx context.Context, sel ast.SelectionSet, obj *models.SetTitlePayload) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, setTitlePayloadImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("SetTitlePayload")
-		case "clientMutationId":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitlePayload_clientMutationId(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "bug":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitlePayload_bug(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Field_deprecationReason(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Field",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "operation":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitlePayload_operation(ctx, field, obj)
+func (ec *executionContext) ___InputValue_name(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___InputValue_name(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalNString2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___InputValue_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__InputValue",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___InputValue_description(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___InputValue_description(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var setTitleTimelineItemImplementors = []string{"SetTitleTimelineItem", "TimelineItem", "Authored"}
-
-func (ec *executionContext) _SetTitleTimelineItem(ctx context.Context, sel ast.SelectionSet, obj *bug.SetTitleTimelineItem) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, setTitleTimelineItemImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("SetTitleTimelineItem")
-		case "id":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleTimelineItem_id(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "author":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleTimelineItem_author(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "date":
-			field := field
-
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				defer func() {
-					if r := recover(); r != nil {
-						ec.Error(ctx, ec.Recover(ctx, r))
-					}
-				}()
-				res = ec._SetTitleTimelineItem_date(ctx, field, obj)
-				if res == graphql.Null {
-					atomic.AddUint32(&invalids, 1)
-				}
-				return res
-			}
-
-			out.Concurrently(i, func() graphql.Marshaler {
-				return innerFunc(ctx)
-
-			})
-		case "title":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitleTimelineItem_title(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		case "was":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._SetTitleTimelineItem_was(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___InputValue_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__InputValue",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				atomic.AddUint32(&invalids, 1)
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___InputValue_type(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___InputValue_type(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Type, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
+			}
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
 }
 
-var timelineItemConnectionImplementors = []string{"TimelineItemConnection"}
-
-func (ec *executionContext) _TimelineItemConnection(ctx context.Context, sel ast.SelectionSet, obj *models.TimelineItemConnection) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, timelineItemConnectionImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("TimelineItemConnection")
-		case "edges":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemConnection_edges(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "nodes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemConnection_nodes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "pageInfo":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemConnection_pageInfo(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "totalCount":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemConnection_totalCount(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___InputValue_type(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__InputValue",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___InputValue_defaultValue(ctx context.Context, field graphql.CollectedField, obj *introspection.InputValue) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___InputValue_defaultValue(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.DefaultValue, nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var timelineItemEdgeImplementors = []string{"TimelineItemEdge"}
-
-func (ec *executionContext) _TimelineItemEdge(ctx context.Context, sel ast.SelectionSet, obj *models.TimelineItemEdge) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, timelineItemEdgeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("TimelineItemEdge")
-		case "cursor":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemEdge_cursor(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "node":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec._TimelineItemEdge_node(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___InputValue_defaultValue(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__InputValue",
+		Field: field,
+		IsMethod: false,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Schema_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_description(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var __DirectiveImplementors = []string{"__Directive"}
-
-func (ec *executionContext) ___Directive(ctx context.Context, sel ast.SelectionSet, obj *introspection.Directive) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __DirectiveImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__Directive")
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Directive_name(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "description":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Directive_description(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "locations":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Directive_locations(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "args":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Directive_args(ctx, field, obj)
+func (ec *executionContext) ___Schema_types(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_types(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Types(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]introspection.Type)
+		fc.Result = res
+		return ec.marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_types(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "isRepeatable":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Directive_isRepeatable(ctx, field, obj)
+func (ec *executionContext) ___Schema_queryType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_queryType(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.QueryType(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_queryType(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Schema_mutationType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_mutationType(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.MutationType(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
 }
 
-var __EnumValueImplementors = []string{"__EnumValue"}
-
-func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.SelectionSet, obj *introspection.EnumValue) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __EnumValueImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__EnumValue")
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___EnumValue_name(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "description":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___EnumValue_description(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "isDeprecated":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___EnumValue_isDeprecated(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "deprecationReason":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___EnumValue_deprecationReason(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_mutationType(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Schema_subscriptionType(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_subscriptionType(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.SubscriptionType(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
 }
 
-var __FieldImplementors = []string{"__Field"}
-
-func (ec *executionContext) ___Field(ctx context.Context, sel ast.SelectionSet, obj *introspection.Field) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __FieldImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__Field")
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_name(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "description":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_description(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "args":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_args(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "type":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_type(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_subscriptionType(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "isDeprecated":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_isDeprecated(ctx, field, obj)
+func (ec *executionContext) ___Schema_directives(ctx context.Context, field graphql.CollectedField, obj *introspection.Schema) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Schema_directives(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Directives(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.([]introspection.Directive)
+		fc.Result = res
+		return ec.marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Schema_directives(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Schema",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___Directive_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Directive_description(ctx, field)
+						case "locations":
+							return ec.fieldContext___Directive_locations(ctx, field)
+						case "args":
+							return ec.fieldContext___Directive_args(ctx, field)
+						case "isRepeatable":
+							return ec.fieldContext___Directive_isRepeatable(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Directive", field.Name)
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "deprecationReason":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Field_deprecationReason(ctx, field, obj)
+func (ec *executionContext) ___Type_kind(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_kind(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Kind(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
+			if !graphql.HasFieldError(ctx, fc) {
+				ec.Errorf(ctx, "must not be null")
 			}
+		return graphql.Null
+	}
+		res := resTmp.(string)
+		fc.Result = res
+		return ec.marshalN__TypeKind2string(ctx, field.Selections, res)
+}
 
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Type_kind(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type __TypeKind does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Type_name(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_name(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Name(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var __InputValueImplementors = []string{"__InputValue"}
-
-func (ec *executionContext) ___InputValue(ctx context.Context, sel ast.SelectionSet, obj *introspection.InputValue) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __InputValueImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__InputValue")
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___InputValue_name(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "description":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___InputValue_description(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "type":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___InputValue_type(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "defaultValue":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___InputValue_defaultValue(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Type_name(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Type_description(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_description(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Description(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-var __SchemaImplementors = []string{"__Schema"}
-
-func (ec *executionContext) ___Schema(ctx context.Context, sel ast.SelectionSet, obj *introspection.Schema) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __SchemaImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__Schema")
-		case "types":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Schema_types(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "queryType":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Schema_queryType(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "mutationType":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Schema_mutationType(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "subscriptionType":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Schema_subscriptionType(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "directives":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Schema_directives(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
+func (ec *executionContext) fieldContext___Type_description(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
+	}
+	return fc, nil
+}
 
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
-		}
+func (ec *executionContext) ___Type_fields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_fields(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Fields(fc.Args["includeDeprecated"].(bool)), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
+		res := resTmp.([]introspection.Field)
+		fc.Result = res
+		return ec.marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐFieldᚄ(ctx, field.Selections, res)
 }
 
-var __TypeImplementors = []string{"__Type"}
-
-func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet, obj *introspection.Type) graphql.Marshaler {
-	fields := graphql.CollectFields(ec.OperationContext, sel, __TypeImplementors)
-	out := graphql.NewFieldSet(fields)
-	var invalids uint32
-	for i, field := range fields {
-		switch field.Name {
-		case "__typename":
-			out.Values[i] = graphql.MarshalString("__Type")
-		case "kind":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_kind(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-			if out.Values[i] == graphql.Null {
-				invalids++
-			}
-		case "name":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_name(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "description":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_description(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "fields":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_fields(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "interfaces":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_interfaces(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "possibleTypes":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_possibleTypes(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "enumValues":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_enumValues(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "inputFields":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_inputFields(ctx, field, obj)
-			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		case "ofType":
-			innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
-				return ec.___Type_ofType(ctx, field, obj)
+func (ec *executionContext) fieldContext___Type_fields(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___Field_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Field_description(ctx, field)
+						case "args":
+							return ec.fieldContext___Field_args(ctx, field)
+						case "type":
+							return ec.fieldContext___Field_type(ctx, field)
+						case "isDeprecated":
+							return ec.fieldContext___Field_isDeprecated(ctx, field)
+						case "deprecationReason":
+							return ec.fieldContext___Field_deprecationReason(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Field", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
 			}
-
-			out.Values[i] = innerFunc(ctx)
-
-		default:
-			panic("unknown field " + strconv.Quote(field.Name))
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field___Type_fields_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
 		}
+	return fc, nil
+}
+
+func (ec *executionContext) ___Type_interfaces(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_interfaces(ctx, field)
+	if err != nil {
+		return graphql.Null
 	}
-	out.Dispatch()
-	if invalids > 0 {
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.Interfaces(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return out
-}
-
-// endregion **************************** object.gotpl ****************************
-
-// region    ***************************** type.gotpl *****************************
-
-func (ec *executionContext) unmarshalNAddCommentAndCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugInput(ctx context.Context, v interface{}) (models.AddCommentAndCloseBugInput, error) {
-	res, err := ec.unmarshalInputAddCommentAndCloseBugInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+		res := resTmp.([]introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) marshalNAddCommentAndCloseBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentAndCloseBugPayload) graphql.Marshaler {
-	return ec._AddCommentAndCloseBugPayload(ctx, sel, &v)
+func (ec *executionContext) fieldContext___Type_interfaces(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNAddCommentAndCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentAndCloseBugPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) ___Type_possibleTypes(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_possibleTypes(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.PossibleTypes(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return ec._AddCommentAndCloseBugPayload(ctx, sel, v)
-}
-
-func (ec *executionContext) unmarshalNAddCommentAndReopenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugInput(ctx context.Context, v interface{}) (models.AddCommentAndReopenBugInput, error) {
-	res, err := ec.unmarshalInputAddCommentAndReopenBugInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+		res := resTmp.([]introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) marshalNAddCommentAndReopenBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentAndReopenBugPayload) graphql.Marshaler {
-	return ec._AddCommentAndReopenBugPayload(ctx, sel, &v)
+func (ec *executionContext) fieldContext___Type_possibleTypes(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNAddCommentAndReopenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentAndReopenBugPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) ___Type_enumValues(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_enumValues(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.EnumValues(fc.Args["includeDeprecated"].(bool)), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
+		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return ec._AddCommentAndReopenBugPayload(ctx, sel, v)
+		res := resTmp.([]introspection.EnumValue)
+		fc.Result = res
+		return ec.marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValueᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) unmarshalNAddCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentInput(ctx context.Context, v interface{}) (models.AddCommentInput, error) {
-	res, err := ec.unmarshalInputAddCommentInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+func (ec *executionContext) fieldContext___Type_enumValues(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___EnumValue_name(ctx, field)
+						case "description":
+							return ec.fieldContext___EnumValue_description(ctx, field)
+						case "isDeprecated":
+							return ec.fieldContext___EnumValue_isDeprecated(ctx, field)
+						case "deprecationReason":
+							return ec.fieldContext___EnumValue_deprecationReason(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __EnumValue", field.Name)
+		},
+	}
+		defer func () {
+			if r := recover(); r != nil {
+				err = ec.Recover(ctx, r)
+				ec.Error(ctx, err)
+			}
+		}()
+		ctx = graphql.WithFieldContext(ctx, fc)
+		if fc.Args, err = ec.field___Type_enumValues_args(ctx, field.ArgumentMap(ec.Variables)); err != nil {
+			ec.Error(ctx, err)
+			return
+		}
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx context.Context, sel ast.SelectionSet, v *bug.AddCommentOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+func (ec *executionContext) ___Type_inputFields(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_inputFields(ctx, field)
+	if err != nil {
+		return graphql.Null
+	}
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
+		}
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.InputFields(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return ec._AddCommentOperation(ctx, sel, v)
+		res := resTmp.([]introspection.InputValue)
+		fc.Result = res
+		return ec.marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) marshalNAddCommentPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentPayload) graphql.Marshaler {
-	return ec._AddCommentPayload(ctx, sel, &v)
+func (ec *executionContext) fieldContext___Type_inputFields(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "name":
+							return ec.fieldContext___InputValue_name(ctx, field)
+						case "description":
+							return ec.fieldContext___InputValue_description(ctx, field)
+						case "type":
+							return ec.fieldContext___InputValue_type(ctx, field)
+						case "defaultValue":
+							return ec.fieldContext___InputValue_defaultValue(ctx, field)
+				}
+				return nil, fmt.Errorf("no field named %q was found under type __InputValue", field.Name)
+		},
+	}
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNAddCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
+func (ec *executionContext) ___Type_ofType(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_ofType(ctx, field)
+	if err != nil {
 		return graphql.Null
 	}
-	return ec._AddCommentPayload(ctx, sel, v)
-}
-
-func (ec *executionContext) unmarshalNBoolean2bool(ctx context.Context, v interface{}) (bool, error) {
-	res, err := graphql.UnmarshalBoolean(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
-
-func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler {
-	res := graphql.MarshalBoolean(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-	}
-	return res
-}
-
-func (ec *executionContext) marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx context.Context, sel ast.SelectionSet, v models.BugWrapper) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.OfType(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
+			return graphql.Null
 		}
+	if resTmp == nil {
 		return graphql.Null
 	}
-	return ec._Bug(ctx, sel, v)
+		res := resTmp.(*introspection.Type)
+		fc.Result = res
+		return ec.marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) marshalNBug2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapperᚄ(ctx context.Context, sel ast.SelectionSet, v []models.BugWrapper) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+func (ec *executionContext) fieldContext___Type_ofType(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				switch field.Name {
+						case "kind":
+							return ec.fieldContext___Type_kind(ctx, field)
+						case "name":
+							return ec.fieldContext___Type_name(ctx, field)
+						case "description":
+							return ec.fieldContext___Type_description(ctx, field)
+						case "fields":
+							return ec.fieldContext___Type_fields(ctx, field)
+						case "interfaces":
+							return ec.fieldContext___Type_interfaces(ctx, field)
+						case "possibleTypes":
+							return ec.fieldContext___Type_possibleTypes(ctx, field)
+						case "enumValues":
+							return ec.fieldContext___Type_enumValues(ctx, field)
+						case "inputFields":
+							return ec.fieldContext___Type_inputFields(ctx, field)
+						case "ofType":
+							return ec.fieldContext___Type_ofType(ctx, field)
+						case "specifiedByURL":
+							return ec.fieldContext___Type_specifiedByURL(ctx, field)
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
-
+				return nil, fmt.Errorf("no field named %q was found under type __Type", field.Name)
+		},
 	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
-	}
-
-	return ret
-}
-
-func (ec *executionContext) marshalNBugConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx context.Context, sel ast.SelectionSet, v models.BugConnection) graphql.Marshaler {
-	return ec._BugConnection(ctx, sel, &v)
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNBugConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx context.Context, sel ast.SelectionSet, v *models.BugConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
+func (ec *executionContext) ___Type_specifiedByURL(ctx context.Context, field graphql.CollectedField, obj *introspection.Type) (ret graphql.Marshaler) {
+	fc, err := ec.fieldContext___Type_specifiedByURL(ctx, field)
+	if err != nil {
 		return graphql.Null
 	}
-	return ec._BugConnection(ctx, sel, v)
-}
-
-func (ec *executionContext) marshalNBugEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.BugEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNBugEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdge(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	ctx = graphql.WithFieldContext(ctx, fc)
+	defer func () {
+		if r := recover(); r != nil {
+			ec.Error(ctx, ec.Recover(ctx, r))
+			ret = graphql.Null
 		}
-
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
+	}()
+		resTmp, err := ec.ResolverMiddleware(ctx, func(rctx context.Context) (interface{}, error) {
+			ctx = rctx  // use context from middleware stack in children
+		return obj.SpecifiedByURL(), nil
+		})
+		if err != nil {
+			ec.Error(ctx, err)
 			return graphql.Null
 		}
+	if resTmp == nil {
+		return graphql.Null
 	}
-
-	return ret
+		res := resTmp.(*string)
+		fc.Result = res
+		return ec.marshalOString2ᚖstring(ctx, field.Selections, res)
 }
 
-func (ec *executionContext) marshalNBugEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdge(ctx context.Context, sel ast.SelectionSet, v *models.BugEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+func (ec *executionContext) fieldContext___Type_specifiedByURL(ctx context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) {
+	fc = &graphql.FieldContext{
+		Object: "__Type",
+		Field: field,
+		IsMethod: true,
+		IsResolver: false,
+		Child: func (ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) {
+				return nil, errors.New("field of type String does not have child fields")
+		},
 	}
-	return ec._BugEdge(ctx, sel, v)
+	return fc, nil
 }
 
-func (ec *executionContext) marshalNChangeLabelPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx context.Context, sel ast.SelectionSet, v models.ChangeLabelPayload) graphql.Marshaler {
-	return ec._ChangeLabelPayload(ctx, sel, &v)
-}
 
-func (ec *executionContext) marshalNChangeLabelPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx context.Context, sel ast.SelectionSet, v *models.ChangeLabelPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	return ec._ChangeLabelPayload(ctx, sel, v)
-}
 
-func (ec *executionContext) unmarshalNCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugInput(ctx context.Context, v interface{}) (models.CloseBugInput, error) {
-	res, err := ec.unmarshalInputCloseBugInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
 
-func (ec *executionContext) marshalNCloseBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v models.CloseBugPayload) graphql.Marshaler {
-	return ec._CloseBugPayload(ctx, sel, &v)
-}
 
-func (ec *executionContext) marshalNCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.CloseBugPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	return ec._CloseBugPayload(ctx, sel, v)
-}
+// endregion **************************** field.gotpl *****************************
 
-func (ec *executionContext) marshalNColor2imageᚋcolorᚐRGBA(ctx context.Context, sel ast.SelectionSet, v color.RGBA) graphql.Marshaler {
-	return ec._Color(ctx, sel, &v)
-}
+// region    **************************** input.gotpl *****************************
 
-func (ec *executionContext) marshalNColor2ᚖimageᚋcolorᚐRGBA(ctx context.Context, sel ast.SelectionSet, v *color.RGBA) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
-	}
-	return ec._Color(ctx, sel, v)
-}
+	func (ec *executionContext) unmarshalInputAddCommentAndCloseBugInput(ctx context.Context, obj interface{}) (models.AddCommentAndCloseBugInput, error) {
+		var it models.AddCommentAndCloseBugInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","message","files", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "message":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
+						it.Message, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "files":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
+						it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputAddCommentAndReopenBugInput(ctx context.Context, obj interface{}) (models.AddCommentAndReopenBugInput, error) {
+		var it models.AddCommentAndReopenBugInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","message","files", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "message":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
+						it.Message, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "files":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
+						it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputAddCommentInput(ctx context.Context, obj interface{}) (models.AddCommentInput, error) {
+		var it models.AddCommentInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","message","files", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "message":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
+						it.Message, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "files":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
+						it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputChangeLabelInput(ctx context.Context, obj interface{}) (models.ChangeLabelInput, error) {
+		var it models.ChangeLabelInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","added","Removed", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "added":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("added"))
+						it.Added, err = ec.unmarshalOString2ᚕstringᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "Removed":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("Removed"))
+						it.Removed, err = ec.unmarshalOString2ᚕstringᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputCloseBugInput(ctx context.Context, obj interface{}) (models.CloseBugInput, error) {
+		var it models.CloseBugInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputEditCommentInput(ctx context.Context, obj interface{}) (models.EditCommentInput, error) {
+		var it models.EditCommentInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","target","message","files", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "target":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("target"))
+						it.Target, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "message":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
+						it.Message, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "files":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
+						it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputNewBugInput(ctx context.Context, obj interface{}) (models.NewBugInput, error) {
+		var it models.NewBugInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","title","message","files", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "title":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("title"))
+						it.Title, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "message":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("message"))
+						it.Message, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "files":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("files"))
+						it.Files, err = ec.unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputOpenBugInput(ctx context.Context, obj interface{}) (models.OpenBugInput, error) {
+		var it models.OpenBugInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
 
-func (ec *executionContext) marshalNComment2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentᚄ(ctx context.Context, sel ast.SelectionSet, v []*bug.Comment) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			}
+		}
+
+		return it, nil
+	}
+
+	func (ec *executionContext) unmarshalInputSetTitleInput(ctx context.Context, obj interface{}) (models.SetTitleInput, error) {
+		var it models.SetTitleInput
+		asMap := map[string]interface{}{}
+		for k, v := range obj.(map[string]interface{}) {
+			asMap[k] = v
+		}
+		
+
+		fieldsInOrder := [...]string{ "clientMutationId","repoRef","prefix","title", }
+		for _, k := range fieldsInOrder {
+			v, ok := asMap[k]
+			if !ok {
+				continue
+			}
+			switch k {
+			case "clientMutationId":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("clientMutationId"))
+						it.ClientMutationID, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "repoRef":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("repoRef"))
+						it.RepoRef, err = ec.unmarshalOString2ᚖstring(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "prefix":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("prefix"))
+						it.Prefix, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
+			case "title":
+				var err error
+
+				ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("title"))
+						it.Title, err = ec.unmarshalNString2string(ctx, v)
+						if err != nil {
+							return it, err
+						}
 			}
-			ret[i] = ec.marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
 		}
 
+		return it, nil
 	}
-	wg.Wait()
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
-	}
 
-	return ret
-}
+// endregion **************************** input.gotpl *****************************
 
-func (ec *executionContext) marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx context.Context, sel ast.SelectionSet, v *bug.Comment) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
+// region    ************************** interface.gotpl ***************************
+
+
+func (ec *executionContext) _Authored(ctx context.Context, sel ast.SelectionSet, obj models.Authored) graphql.Marshaler {
+	switch obj := (obj).(type) {
+	case nil:
 		return graphql.Null
+		case bug.Comment:
+			return ec._Comment(ctx, sel, &obj)
+		case *bug.Comment:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._Comment(ctx, sel, obj)
+		case models.BugWrapper:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._Bug(ctx, sel, obj)
+		case *bug.CreateOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._CreateOperation(ctx, sel, obj)
+		case *bug.SetTitleOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetTitleOperation(ctx, sel, obj)
+		case *bug.AddCommentOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._AddCommentOperation(ctx, sel, obj)
+		case *bug.EditCommentOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._EditCommentOperation(ctx, sel, obj)
+		case *bug.SetStatusOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetStatusOperation(ctx, sel, obj)
+		case *bug.LabelChangeOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._LabelChangeOperation(ctx, sel, obj)
+		case *bug.CreateTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._CreateTimelineItem(ctx, sel, obj)
+		case *bug.AddCommentTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._AddCommentTimelineItem(ctx, sel, obj)
+		case *bug.LabelChangeTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._LabelChangeTimelineItem(ctx, sel, obj)
+		case *bug.SetStatusTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetStatusTimelineItem(ctx, sel, obj)
+		case *bug.SetTitleTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetTitleTimelineItem(ctx, sel, obj)
+	default:
+		panic(fmt.Errorf("unexpected type %T", obj))
 	}
-	return ec._Comment(ctx, sel, v)
 }
 
-func (ec *executionContext) marshalNCommentConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx context.Context, sel ast.SelectionSet, v models.CommentConnection) graphql.Marshaler {
-	return ec._CommentConnection(ctx, sel, &v)
+func (ec *executionContext) _Operation(ctx context.Context, sel ast.SelectionSet, obj dag.Operation) graphql.Marshaler {
+	switch obj := (obj).(type) {
+	case nil:
+		return graphql.Null
+		case *bug.CreateOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._CreateOperation(ctx, sel, obj)
+		case *bug.SetTitleOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetTitleOperation(ctx, sel, obj)
+		case *bug.AddCommentOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._AddCommentOperation(ctx, sel, obj)
+		case *bug.EditCommentOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._EditCommentOperation(ctx, sel, obj)
+		case *bug.SetStatusOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetStatusOperation(ctx, sel, obj)
+		case *bug.LabelChangeOperation:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._LabelChangeOperation(ctx, sel, obj)
+	default:
+		panic(fmt.Errorf("unexpected type %T", obj))
+	}
 }
 
-func (ec *executionContext) marshalNCommentConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx context.Context, sel ast.SelectionSet, v *models.CommentConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
+func (ec *executionContext) _TimelineItem(ctx context.Context, sel ast.SelectionSet, obj bug.TimelineItem) graphql.Marshaler {
+	switch obj := (obj).(type) {
+	case nil:
 		return graphql.Null
+		case *bug.CreateTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._CreateTimelineItem(ctx, sel, obj)
+		case *bug.AddCommentTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._AddCommentTimelineItem(ctx, sel, obj)
+		case bug.LabelChangeTimelineItem:
+			return ec._LabelChangeTimelineItem(ctx, sel, &obj)
+		case *bug.LabelChangeTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._LabelChangeTimelineItem(ctx, sel, obj)
+		case bug.SetStatusTimelineItem:
+			return ec._SetStatusTimelineItem(ctx, sel, &obj)
+		case *bug.SetStatusTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetStatusTimelineItem(ctx, sel, obj)
+		case bug.SetTitleTimelineItem:
+			return ec._SetTitleTimelineItem(ctx, sel, &obj)
+		case *bug.SetTitleTimelineItem:
+				if obj == nil {
+					return graphql.Null
+				}
+			return ec._SetTitleTimelineItem(ctx, sel, obj)
+	default:
+		panic(fmt.Errorf("unexpected type %T", obj))
 	}
-	return ec._CommentConnection(ctx, sel, v)
 }
 
-func (ec *executionContext) marshalNCommentEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.CommentEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNCommentEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdge(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+// endregion ************************** interface.gotpl ***************************
 
-	}
-	wg.Wait()
+// region    **************************** object.gotpl ****************************
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
-	}
 
-	return ret
+var addCommentAndCloseBugPayloadImplementors = []string{"AddCommentAndCloseBugPayload"}
+func (ec *executionContext) _AddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet,obj *models.AddCommentAndCloseBugPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentAndCloseBugPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("AddCommentAndCloseBugPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._AddCommentAndCloseBugPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._AddCommentAndCloseBugPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "commentOperation":
+                
+                    out.Values[i] = ec._AddCommentAndCloseBugPayload_commentOperation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "statusOperation":
+                
+                    out.Values[i] = ec._AddCommentAndCloseBugPayload_statusOperation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNCommentEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdge(ctx context.Context, sel ast.SelectionSet, v *models.CommentEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var addCommentAndReopenBugPayloadImplementors = []string{"AddCommentAndReopenBugPayload"}
+func (ec *executionContext) _AddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet,obj *models.AddCommentAndReopenBugPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentAndReopenBugPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("AddCommentAndReopenBugPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._AddCommentAndReopenBugPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._AddCommentAndReopenBugPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "commentOperation":
+                
+                    out.Values[i] = ec._AddCommentAndReopenBugPayload_commentOperation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "statusOperation":
+                
+                    out.Values[i] = ec._AddCommentAndReopenBugPayload_statusOperation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._CommentEdge(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNCommentHistoryStep2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStep(ctx context.Context, sel ast.SelectionSet, v bug.CommentHistoryStep) graphql.Marshaler {
-	return ec._CommentHistoryStep(ctx, sel, &v)
+var addCommentOperationImplementors = []string{"AddCommentOperation", "Operation", "Authored"}
+func (ec *executionContext) _AddCommentOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.AddCommentOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("AddCommentOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "message":
+                
+                    out.Values[i] = ec._AddCommentOperation_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._AddCommentOperation_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.CommentHistoryStep) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
+var addCommentPayloadImplementors = []string{"AddCommentPayload"}
+func (ec *executionContext) _AddCommentPayload(ctx context.Context, sel ast.SelectionSet,obj *models.AddCommentPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("AddCommentPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._AddCommentPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._AddCommentPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._AddCommentPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNCommentHistoryStep2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStep(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
+var addCommentTimelineItemImplementors = []string{"AddCommentTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) _AddCommentTimelineItem(ctx context.Context, sel ast.SelectionSet,obj *bug.AddCommentTimelineItem) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, addCommentTimelineItemImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("AddCommentTimelineItem")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentTimelineItem_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentTimelineItem_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "message":
+                
+                    out.Values[i] = ec._AddCommentTimelineItem_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "messageIsEmpty":
+                
+                    out.Values[i] = ec._AddCommentTimelineItem_messageIsEmpty(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._AddCommentTimelineItem_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "createdAt":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentTimelineItem_createdAt(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "lastEdit":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._AddCommentTimelineItem_lastEdit(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "edited":
+                
+                    out.Values[i] = ec._AddCommentTimelineItem_edited(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "history":
+                
+                    out.Values[i] = ec._AddCommentTimelineItem_history(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var bugImplementors = []string{"Bug", "Authored"}
+func (ec *executionContext) _Bug(ctx context.Context, sel ast.SelectionSet,obj models.BugWrapper) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, bugImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Bug")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "humanId":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_humanId(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "status":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_status(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "title":
+                
+                    out.Values[i] = ec._Bug_title(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "labels":
+                
+                    out.Values[i] = ec._Bug_labels(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "author":
+                
+                    out.Values[i] = ec._Bug_author(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "createdAt":
+                
+                    out.Values[i] = ec._Bug_createdAt(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "lastEdit":
+                
+                    out.Values[i] = ec._Bug_lastEdit(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "actors":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_actors(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "participants":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_participants(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "comments":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_comments(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "timeline":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_timeline(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "operations":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Bug_operations(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	return ret
+var bugConnectionImplementors = []string{"BugConnection"}
+func (ec *executionContext) _BugConnection(ctx context.Context, sel ast.SelectionSet,obj *models.BugConnection) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, bugConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("BugConnection")
+        case "edges":
+                
+                    out.Values[i] = ec._BugConnection_edges(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "nodes":
+                
+                    out.Values[i] = ec._BugConnection_nodes(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "pageInfo":
+                
+                    out.Values[i] = ec._BugConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._BugConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNCreateOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCreateOperation(ctx context.Context, sel ast.SelectionSet, v *bug.CreateOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var bugEdgeImplementors = []string{"BugEdge"}
+func (ec *executionContext) _BugEdge(ctx context.Context, sel ast.SelectionSet,obj *models.BugEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, bugEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("BugEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._BugEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._BugEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._CreateOperation(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNEditCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentInput(ctx context.Context, v interface{}) (models.EditCommentInput, error) {
-	res, err := ec.unmarshalInputEditCommentInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+var changeLabelPayloadImplementors = []string{"ChangeLabelPayload"}
+func (ec *executionContext) _ChangeLabelPayload(ctx context.Context, sel ast.SelectionSet,obj *models.ChangeLabelPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, changeLabelPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("ChangeLabelPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._ChangeLabelPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._ChangeLabelPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._ChangeLabelPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "results":
+                
+                    out.Values[i] = ec._ChangeLabelPayload_results(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNEditCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐEditCommentOperation(ctx context.Context, sel ast.SelectionSet, v *bug.EditCommentOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var closeBugPayloadImplementors = []string{"CloseBugPayload"}
+func (ec *executionContext) _CloseBugPayload(ctx context.Context, sel ast.SelectionSet,obj *models.CloseBugPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, closeBugPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CloseBugPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._CloseBugPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._CloseBugPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._CloseBugPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._EditCommentOperation(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNEditCommentPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx context.Context, sel ast.SelectionSet, v models.EditCommentPayload) graphql.Marshaler {
-	return ec._EditCommentPayload(ctx, sel, &v)
+var colorImplementors = []string{"Color"}
+func (ec *executionContext) _Color(ctx context.Context, sel ast.SelectionSet,obj *color.RGBA) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, colorImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Color")
+        case "R":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Color_R(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "G":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Color_G(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "B":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Color_B(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNEditCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx context.Context, sel ast.SelectionSet, v *models.EditCommentPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var commentImplementors = []string{"Comment", "Authored"}
+func (ec *executionContext) _Comment(ctx context.Context, sel ast.SelectionSet,obj *bug.Comment) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, commentImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Comment")
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Comment_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "message":
+                
+                    out.Values[i] = ec._Comment_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._Comment_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._EditCommentPayload(ctx, sel, v)
-}
-
-func (ec *executionContext) unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx context.Context, v interface{}) (repository.Hash, error) {
-	var res repository.Hash
-	err := res.UnmarshalGQL(v)
-	return res, graphql.ErrorOnPath(ctx, err)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx context.Context, sel ast.SelectionSet, v repository.Hash) graphql.Marshaler {
-	return v
+var commentConnectionImplementors = []string{"CommentConnection"}
+func (ec *executionContext) _CommentConnection(ctx context.Context, sel ast.SelectionSet,obj *models.CommentConnection) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, commentConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CommentConnection")
+        case "edges":
+                
+                    out.Values[i] = ec._CommentConnection_edges(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "nodes":
+                
+                    out.Values[i] = ec._CommentConnection_nodes(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "pageInfo":
+                
+                    out.Values[i] = ec._CommentConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._CommentConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, v interface{}) ([]repository.Hash, error) {
-	var vSlice []interface{}
-	if v != nil {
-		vSlice = graphql.CoerceList(v)
-	}
-	var err error
-	res := make([]repository.Hash, len(vSlice))
-	for i := range vSlice {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
-		res[i], err = ec.unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, vSlice[i])
-		if err != nil {
-			return nil, err
-		}
+var commentEdgeImplementors = []string{"CommentEdge"}
+func (ec *executionContext) _CommentEdge(ctx context.Context, sel ast.SelectionSet,obj *models.CommentEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, commentEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CommentEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._CommentEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._CommentEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return res, nil
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, sel ast.SelectionSet, v []repository.Hash) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	for i := range v {
-		ret[i] = ec.marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, sel, v[i])
+var commentHistoryStepImplementors = []string{"CommentHistoryStep"}
+func (ec *executionContext) _CommentHistoryStep(ctx context.Context, sel ast.SelectionSet,obj *bug.CommentHistoryStep) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, commentHistoryStepImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CommentHistoryStep")
+        case "message":
+                
+                    out.Values[i] = ec._CommentHistoryStep_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CommentHistoryStep_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var createOperationImplementors = []string{"CreateOperation", "Operation", "Authored"}
+func (ec *executionContext) _CreateOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.CreateOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, createOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CreateOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "title":
+                
+                    out.Values[i] = ec._CreateOperation_title(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "message":
+                
+                    out.Values[i] = ec._CreateOperation_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._CreateOperation_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx context.Context, sel ast.SelectionSet, v models.IdentityWrapper) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var createTimelineItemImplementors = []string{"CreateTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) _CreateTimelineItem(ctx context.Context, sel ast.SelectionSet,obj *bug.CreateTimelineItem) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, createTimelineItemImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("CreateTimelineItem")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateTimelineItem_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateTimelineItem_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "message":
+                
+                    out.Values[i] = ec._CreateTimelineItem_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "messageIsEmpty":
+                
+                    out.Values[i] = ec._CreateTimelineItem_messageIsEmpty(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._CreateTimelineItem_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "createdAt":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateTimelineItem_createdAt(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "lastEdit":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._CreateTimelineItem_lastEdit(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "edited":
+                
+                    out.Values[i] = ec._CreateTimelineItem_edited(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "history":
+                
+                    out.Values[i] = ec._CreateTimelineItem_history(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._Identity(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentity2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapperᚄ(ctx context.Context, sel ast.SelectionSet, v []models.IdentityWrapper) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
+var editCommentOperationImplementors = []string{"EditCommentOperation", "Operation", "Authored"}
+func (ec *executionContext) _EditCommentOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.EditCommentOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, editCommentOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("EditCommentOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._EditCommentOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._EditCommentOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._EditCommentOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "target":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._EditCommentOperation_target(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "message":
+                
+                    out.Values[i] = ec._EditCommentOperation_message(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "files":
+                
+                    out.Values[i] = ec._EditCommentOperation_files(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
+var editCommentPayloadImplementors = []string{"EditCommentPayload"}
+func (ec *executionContext) _EditCommentPayload(ctx context.Context, sel ast.SelectionSet,obj *models.EditCommentPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, editCommentPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("EditCommentPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._EditCommentPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._EditCommentPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._EditCommentPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var identityImplementors = []string{"Identity"}
+func (ec *executionContext) _Identity(ctx context.Context, sel ast.SelectionSet,obj models.IdentityWrapper) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, identityImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Identity")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Identity_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "humanId":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Identity_humanId(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "name":
+                
+                    out.Values[i] = ec._Identity_name(ctx, field, obj)
+                
+        case "email":
+                
+                    out.Values[i] = ec._Identity_email(ctx, field, obj)
+                
+        case "login":
+                
+                    out.Values[i] = ec._Identity_login(ctx, field, obj)
+                
+        case "displayName":
+                
+                    out.Values[i] = ec._Identity_displayName(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "avatarUrl":
+                
+                    out.Values[i] = ec._Identity_avatarUrl(ctx, field, obj)
+                
+        case "isProtected":
+                
+                    out.Values[i] = ec._Identity_isProtected(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentityConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityConnection(ctx context.Context, sel ast.SelectionSet, v models.IdentityConnection) graphql.Marshaler {
-	return ec._IdentityConnection(ctx, sel, &v)
+var identityConnectionImplementors = []string{"IdentityConnection"}
+func (ec *executionContext) _IdentityConnection(ctx context.Context, sel ast.SelectionSet,obj *connections.Result[NodeT any]) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, identityConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("IdentityConnection")
+        case "edges":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._IdentityConnection_edges(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "nodes":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._IdentityConnection_nodes(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "pageInfo":
+                
+                    out.Values[i] = ec._IdentityConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._IdentityConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityConnection(ctx context.Context, sel ast.SelectionSet, v *models.IdentityConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var identityEdgeImplementors = []string{"IdentityEdge"}
+func (ec *executionContext) _IdentityEdge(ctx context.Context, sel ast.SelectionSet,obj *models.IdentityEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, identityEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("IdentityEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._IdentityEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._IdentityEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._IdentityConnection(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentityEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.IdentityEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
+var labelImplementors = []string{"Label"}
+func (ec *executionContext) _Label(ctx context.Context, sel ast.SelectionSet,obj *bug.Label) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Label")
+        case "name":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Label_name(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "color":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Label_color(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNIdentityEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdge(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
+var labelChangeOperationImplementors = []string{"LabelChangeOperation", "Operation", "Authored"}
+func (ec *executionContext) _LabelChangeOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.LabelChangeOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("LabelChangeOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "added":
+                
+                    out.Values[i] = ec._LabelChangeOperation_added(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "removed":
+                
+                    out.Values[i] = ec._LabelChangeOperation_removed(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var labelChangeResultImplementors = []string{"LabelChangeResult"}
+func (ec *executionContext) _LabelChangeResult(ctx context.Context, sel ast.SelectionSet,obj *bug.LabelChangeResult) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeResultImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("LabelChangeResult")
+        case "label":
+                
+                    out.Values[i] = ec._LabelChangeResult_label(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "status":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeResult_status(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNIdentityEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdge(ctx context.Context, sel ast.SelectionSet, v *models.IdentityEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var labelChangeTimelineItemImplementors = []string{"LabelChangeTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) _LabelChangeTimelineItem(ctx context.Context, sel ast.SelectionSet,obj *bug.LabelChangeTimelineItem) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelChangeTimelineItemImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("LabelChangeTimelineItem")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeTimelineItem_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeTimelineItem_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._LabelChangeTimelineItem_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "added":
+                
+                    out.Values[i] = ec._LabelChangeTimelineItem_added(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "removed":
+                
+                    out.Values[i] = ec._LabelChangeTimelineItem_removed(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._IdentityEdge(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNInt2int(ctx context.Context, v interface{}) (int, error) {
-	res, err := graphql.UnmarshalInt(v)
-	return res, graphql.ErrorOnPath(ctx, err)
+var labelConnectionImplementors = []string{"LabelConnection"}
+func (ec *executionContext) _LabelConnection(ctx context.Context, sel ast.SelectionSet,obj *models.LabelConnection) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("LabelConnection")
+        case "edges":
+                
+                    out.Values[i] = ec._LabelConnection_edges(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "nodes":
+                
+                    out.Values[i] = ec._LabelConnection_nodes(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "pageInfo":
+                
+                    out.Values[i] = ec._LabelConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._LabelConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNInt2int(ctx context.Context, sel ast.SelectionSet, v int) graphql.Marshaler {
-	res := graphql.MarshalInt(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
+var labelEdgeImplementors = []string{"LabelEdge"}
+func (ec *executionContext) _LabelEdge(ctx context.Context, sel ast.SelectionSet,obj *models.LabelEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, labelEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("LabelEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._LabelEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._LabelEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return res
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx context.Context, sel ast.SelectionSet, v bug.Label) graphql.Marshaler {
-	return ec._Label(ctx, sel, &v)
+var mutationImplementors = []string{"Mutation"}
+func (ec *executionContext) _Mutation(ctx context.Context, sel ast.SelectionSet) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, mutationImplementors)
+        ctx = graphql.WithFieldContext(ctx, &graphql.FieldContext{
+            Object: "Mutation",
+        })
+    
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+            innerCtx := graphql.WithRootFieldContext(ctx, &graphql.RootFieldContext{
+                Object: field.Name,
+                Field: field,
+            })
+        
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Mutation")
+        case "newBug":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_newBug(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "addComment":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_addComment(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "addCommentAndClose":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_addCommentAndClose(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "addCommentAndReopen":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_addCommentAndReopen(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "editComment":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_editComment(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "changeLabels":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_changeLabels(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "openBug":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_openBug(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "closeBug":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_closeBug(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "setTitle":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Mutation_setTitle(ctx, field)
+                    })
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.Label) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
+var newBugPayloadImplementors = []string{"NewBugPayload"}
+func (ec *executionContext) _NewBugPayload(ctx context.Context, sel ast.SelectionSet,obj *models.NewBugPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, newBugPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("NewBugPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._NewBugPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._NewBugPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._NewBugPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
+var openBugPayloadImplementors = []string{"OpenBugPayload"}
+func (ec *executionContext) _OpenBugPayload(ctx context.Context, sel ast.SelectionSet,obj *models.OpenBugPayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, openBugPayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("OpenBugPayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._OpenBugPayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._OpenBugPayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._OpenBugPayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var operationConnectionImplementors = []string{"OperationConnection"}
+func (ec *executionContext) _OperationConnection(ctx context.Context, sel ast.SelectionSet,obj *models.OperationConnection) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, operationConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("OperationConnection")
+        case "edges":
+                
+                    out.Values[i] = ec._OperationConnection_edges(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "nodes":
+                
+                    out.Values[i] = ec._OperationConnection_nodes(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "pageInfo":
+                
+                    out.Values[i] = ec._OperationConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._OperationConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelChangeOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeOperation(ctx context.Context, sel ast.SelectionSet, v *bug.LabelChangeOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var operationEdgeImplementors = []string{"OperationEdge"}
+func (ec *executionContext) _OperationEdge(ctx context.Context, sel ast.SelectionSet,obj *models.OperationEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, operationEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("OperationEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._OperationEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._OperationEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._LabelChangeOperation(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelChangeResult2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx context.Context, sel ast.SelectionSet, v []*bug.LabelChangeResult) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
+var pageInfoImplementors = []string{"PageInfo"}
+func (ec *executionContext) _PageInfo(ctx context.Context, sel ast.SelectionSet,obj *models.PageInfo) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, pageInfoImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("PageInfo")
+        case "hasNextPage":
+                
+                    out.Values[i] = ec._PageInfo_hasNextPage(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "hasPreviousPage":
+                
+                    out.Values[i] = ec._PageInfo_hasPreviousPage(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "startCursor":
+                
+                    out.Values[i] = ec._PageInfo_startCursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "endCursor":
+                
+                    out.Values[i] = ec._PageInfo_endCursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalOLabelChangeResult2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
+var queryImplementors = []string{"Query"}
+func (ec *executionContext) _Query(ctx context.Context, sel ast.SelectionSet) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, queryImplementors)
+        ctx = graphql.WithFieldContext(ctx, &graphql.FieldContext{
+            Object: "Query",
+        })
+    
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+            innerCtx := graphql.WithRootFieldContext(ctx, &graphql.RootFieldContext{
+                Object: field.Name,
+                Field: field,
+            })
+        
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Query")
+        case "repository":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Query_repository(ctx, field)
+                    return res
+                }
+
+                
+                    rrm := func(ctx context.Context) graphql.Marshaler {
+                        return ec.OperationContext.RootResolverMiddleware(ctx, innerFunc)
+                    }
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return rrm(innerCtx)
+                })
+        case "__type":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Query___type(ctx, field)
+                    })
+                
+        case "__schema":
+                
+                    out.Values[i] = ec.OperationContext.RootResolverMiddleware(innerCtx, func(ctx context.Context) (res graphql.Marshaler) {
+                        return ec._Query___schema(ctx, field)
+                    })
+                
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx context.Context, v interface{}) (models.LabelChangeStatus, error) {
-	var res models.LabelChangeStatus
-	err := res.UnmarshalGQL(v)
-	return res, graphql.ErrorOnPath(ctx, err)
+var repositoryImplementors = []string{"Repository"}
+func (ec *executionContext) _Repository(ctx context.Context, sel ast.SelectionSet,obj *models.Repository) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, repositoryImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("Repository")
+        case "name":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_name(ctx, field, obj)
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "allBugs":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_allBugs(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "bug":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_bug(ctx, field, obj)
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "allIdentities":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_allIdentities(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "identity":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_identity(ctx, field, obj)
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "userIdentity":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_userIdentity(ctx, field, obj)
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "validLabels":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._Repository_validLabels(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx context.Context, sel ast.SelectionSet, v models.LabelChangeStatus) graphql.Marshaler {
-	return v
+var setStatusOperationImplementors = []string{"SetStatusOperation", "Operation", "Authored"}
+func (ec *executionContext) _SetStatusOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.SetStatusOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, setStatusOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("SetStatusOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "status":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusOperation_status(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx context.Context, sel ast.SelectionSet, v models.LabelConnection) graphql.Marshaler {
-	return ec._LabelConnection(ctx, sel, &v)
+var setStatusTimelineItemImplementors = []string{"SetStatusTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) _SetStatusTimelineItem(ctx context.Context, sel ast.SelectionSet,obj *bug.SetStatusTimelineItem) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, setStatusTimelineItemImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("SetStatusTimelineItem")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusTimelineItem_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusTimelineItem_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusTimelineItem_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "status":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetStatusTimelineItem_status(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx context.Context, sel ast.SelectionSet, v *models.LabelConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var setTitleOperationImplementors = []string{"SetTitleOperation", "Operation", "Authored"}
+func (ec *executionContext) _SetTitleOperation(ctx context.Context, sel ast.SelectionSet,obj *bug.SetTitleOperation) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, setTitleOperationImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("SetTitleOperation")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleOperation_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleOperation_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleOperation_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "title":
+                
+                    out.Values[i] = ec._SetTitleOperation_title(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "was":
+                
+                    out.Values[i] = ec._SetTitleOperation_was(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._LabelConnection(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.LabelEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNLabelEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdge(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
-
+var setTitlePayloadImplementors = []string{"SetTitlePayload"}
+func (ec *executionContext) _SetTitlePayload(ctx context.Context, sel ast.SelectionSet,obj *models.SetTitlePayload) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, setTitlePayloadImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("SetTitlePayload")
+        case "clientMutationId":
+                
+                    out.Values[i] = ec._SetTitlePayload_clientMutationId(ctx, field, obj)
+                
+        case "bug":
+                
+                    out.Values[i] = ec._SetTitlePayload_bug(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "operation":
+                
+                    out.Values[i] = ec._SetTitlePayload_operation(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	wg.Wait()
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
+}
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
-		}
+var setTitleTimelineItemImplementors = []string{"SetTitleTimelineItem", "TimelineItem", "Authored"}
+func (ec *executionContext) _SetTitleTimelineItem(ctx context.Context, sel ast.SelectionSet,obj *bug.SetTitleTimelineItem) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, setTitleTimelineItemImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("SetTitleTimelineItem")
+        case "id":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleTimelineItem_id(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "author":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleTimelineItem_author(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "date":
+                field := field
+
+                innerFunc := func(ctx context.Context) (res graphql.Marshaler) {
+                    defer func() {
+                        if r := recover(); r != nil {
+                            ec.Error(ctx, ec.Recover(ctx, r))
+                        }
+                    }()
+                    res = ec._SetTitleTimelineItem_date(ctx, field, obj)
+                        if res == graphql.Null {
+                                atomic.AddUint32(&invalids, 1)
+                        }
+                    return res
+                }
+
+                
+
+                out.Concurrently(i, func() graphql.Marshaler {return innerFunc(ctx)
+                    
+                })
+        case "title":
+                
+                    out.Values[i] = ec._SetTitleTimelineItem_title(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        case "was":
+                
+                    out.Values[i] = ec._SetTitleTimelineItem_was(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            atomic.AddUint32(&invalids, 1)
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-
-	return ret
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNLabelEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdge(ctx context.Context, sel ast.SelectionSet, v *models.LabelEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var timelineItemConnectionImplementors = []string{"TimelineItemConnection"}
+func (ec *executionContext) _TimelineItemConnection(ctx context.Context, sel ast.SelectionSet,obj *models.TimelineItemConnection) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, timelineItemConnectionImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("TimelineItemConnection")
+        case "edges":
+                
+                    out.Values[i] = ec._TimelineItemConnection_edges(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "nodes":
+                
+                    out.Values[i] = ec._TimelineItemConnection_nodes(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "pageInfo":
+                
+                    out.Values[i] = ec._TimelineItemConnection_pageInfo(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "totalCount":
+                
+                    out.Values[i] = ec._TimelineItemConnection_totalCount(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._LabelEdge(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNNewBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugInput(ctx context.Context, v interface{}) (models.NewBugInput, error) {
-	res, err := ec.unmarshalInputNewBugInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+var timelineItemEdgeImplementors = []string{"TimelineItemEdge"}
+func (ec *executionContext) _TimelineItemEdge(ctx context.Context, sel ast.SelectionSet,obj *models.TimelineItemEdge) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, timelineItemEdgeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("TimelineItemEdge")
+        case "cursor":
+                
+                    out.Values[i] = ec._TimelineItemEdge_cursor(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "node":
+                
+                    out.Values[i] = ec._TimelineItemEdge_node(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNNewBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx context.Context, sel ast.SelectionSet, v models.NewBugPayload) graphql.Marshaler {
-	return ec._NewBugPayload(ctx, sel, &v)
+var __DirectiveImplementors = []string{"__Directive"}
+func (ec *executionContext) ___Directive(ctx context.Context, sel ast.SelectionSet,obj *introspection.Directive) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __DirectiveImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__Directive")
+        case "name":
+                
+                    out.Values[i] = ec.___Directive_name(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "description":
+                
+                    out.Values[i] = ec.___Directive_description(ctx, field, obj)
+                
+        case "locations":
+                
+                    out.Values[i] = ec.___Directive_locations(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "args":
+                
+                    out.Values[i] = ec.___Directive_args(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "isRepeatable":
+                
+                    out.Values[i] = ec.___Directive_isRepeatable(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNNewBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.NewBugPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var __EnumValueImplementors = []string{"__EnumValue"}
+func (ec *executionContext) ___EnumValue(ctx context.Context, sel ast.SelectionSet,obj *introspection.EnumValue) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __EnumValueImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__EnumValue")
+        case "name":
+                
+                    out.Values[i] = ec.___EnumValue_name(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "description":
+                
+                    out.Values[i] = ec.___EnumValue_description(ctx, field, obj)
+                
+        case "isDeprecated":
+                
+                    out.Values[i] = ec.___EnumValue_isDeprecated(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "deprecationReason":
+                
+                    out.Values[i] = ec.___EnumValue_deprecationReason(ctx, field, obj)
+                
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._NewBugPayload(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) unmarshalNOpenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugInput(ctx context.Context, v interface{}) (models.OpenBugInput, error) {
-	res, err := ec.unmarshalInputOpenBugInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
+var __FieldImplementors = []string{"__Field"}
+func (ec *executionContext) ___Field(ctx context.Context, sel ast.SelectionSet,obj *introspection.Field) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __FieldImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__Field")
+        case "name":
+                
+                    out.Values[i] = ec.___Field_name(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "description":
+                
+                    out.Values[i] = ec.___Field_description(ctx, field, obj)
+                
+        case "args":
+                
+                    out.Values[i] = ec.___Field_args(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "type":
+                
+                    out.Values[i] = ec.___Field_type(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "isDeprecated":
+                
+                    out.Values[i] = ec.___Field_isDeprecated(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "deprecationReason":
+                
+                    out.Values[i] = ec.___Field_deprecationReason(ctx, field, obj)
+                
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNOpenBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx context.Context, sel ast.SelectionSet, v models.OpenBugPayload) graphql.Marshaler {
-	return ec._OpenBugPayload(ctx, sel, &v)
+var __InputValueImplementors = []string{"__InputValue"}
+func (ec *executionContext) ___InputValue(ctx context.Context, sel ast.SelectionSet,obj *introspection.InputValue) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __InputValueImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__InputValue")
+        case "name":
+                
+                    out.Values[i] = ec.___InputValue_name(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "description":
+                
+                    out.Values[i] = ec.___InputValue_description(ctx, field, obj)
+                
+        case "type":
+                
+                    out.Values[i] = ec.___InputValue_type(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "defaultValue":
+                
+                    out.Values[i] = ec.___InputValue_defaultValue(ctx, field, obj)
+                
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
+	}
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNOpenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.OpenBugPayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var __SchemaImplementors = []string{"__Schema"}
+func (ec *executionContext) ___Schema(ctx context.Context, sel ast.SelectionSet,obj *introspection.Schema) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __SchemaImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__Schema")
+        case "description":
+                
+                    out.Values[i] = ec.___Schema_description(ctx, field, obj)
+                
+        case "types":
+                
+                    out.Values[i] = ec.___Schema_types(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "queryType":
+                
+                    out.Values[i] = ec.___Schema_queryType(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "mutationType":
+                
+                    out.Values[i] = ec.___Schema_mutationType(ctx, field, obj)
+                
+        case "subscriptionType":
+                
+                    out.Values[i] = ec.___Schema_subscriptionType(ctx, field, obj)
+                
+        case "directives":
+                
+                    out.Values[i] = ec.___Schema_directives(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._OpenBugPayload(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐOperation(ctx context.Context, sel ast.SelectionSet, v bug.Operation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
-		}
-		return graphql.Null
+var __TypeImplementors = []string{"__Type"}
+func (ec *executionContext) ___Type(ctx context.Context, sel ast.SelectionSet,obj *introspection.Type) graphql.Marshaler {
+	fields := graphql.CollectFields(ec.OperationContext, sel, __TypeImplementors)
+	out := graphql.NewFieldSet(fields)
+	var invalids uint32
+	for i, field := range fields {
+        switch field.Name {
+        case "__typename":
+            out.Values[i] = graphql.MarshalString("__Type")
+        case "kind":
+                
+                    out.Values[i] = ec.___Type_kind(ctx, field, obj)
+                
+                    if out.Values[i] == graphql.Null {
+                            invalids++
+                    }
+        case "name":
+                
+                    out.Values[i] = ec.___Type_name(ctx, field, obj)
+                
+        case "description":
+                
+                    out.Values[i] = ec.___Type_description(ctx, field, obj)
+                
+        case "fields":
+                
+                    out.Values[i] = ec.___Type_fields(ctx, field, obj)
+                
+        case "interfaces":
+                
+                    out.Values[i] = ec.___Type_interfaces(ctx, field, obj)
+                
+        case "possibleTypes":
+                
+                    out.Values[i] = ec.___Type_possibleTypes(ctx, field, obj)
+                
+        case "enumValues":
+                
+                    out.Values[i] = ec.___Type_enumValues(ctx, field, obj)
+                
+        case "inputFields":
+                
+                    out.Values[i] = ec.___Type_inputFields(ctx, field, obj)
+                
+        case "ofType":
+                
+                    out.Values[i] = ec.___Type_ofType(ctx, field, obj)
+                
+        case "specifiedByURL":
+                
+                    out.Values[i] = ec.___Type_specifiedByURL(ctx, field, obj)
+                
+        default:
+            panic("unknown field " + strconv.Quote(field.Name))
+        }
 	}
-	return ec._Operation(ctx, sel, v)
+	out.Dispatch()
+	if invalids > 0 { return graphql.Null }
+	return out
 }
 
-func (ec *executionContext) marshalNOperation2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐOperationᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.Operation) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐOperation(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
-		}
+// endregion **************************** object.gotpl ****************************
 
-	}
-	wg.Wait()
+// region    ***************************** type.gotpl *****************************
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) unmarshalNAddCommentAndCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugInput(ctx context.Context, v interface{}) (models.AddCommentAndCloseBugInput, error) {
+					res, err := ec.unmarshalInputAddCommentAndCloseBugInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
-	}
-
-	return ret
-}
 
-func (ec *executionContext) marshalNOperationConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx context.Context, sel ast.SelectionSet, v models.OperationConnection) graphql.Marshaler {
-	return ec._OperationConnection(ctx, sel, &v)
-}
+	
+	
 
-func (ec *executionContext) marshalNOperationConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx context.Context, sel ast.SelectionSet, v *models.OperationConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNAddCommentAndCloseBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentAndCloseBugPayload) graphql.Marshaler {
+					return ec._AddCommentAndCloseBugPayload(ctx, sel, & v)
 		}
-		return graphql.Null
-	}
-	return ec._OperationConnection(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalNOperationEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.OperationEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNOperationEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdge(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+		func (ec *executionContext) marshalNAddCommentAndCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentAndCloseBugPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._AddCommentAndCloseBugPayload(ctx, sel,  v)
 		}
-
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) unmarshalNAddCommentAndReopenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugInput(ctx context.Context, v interface{}) (models.AddCommentAndReopenBugInput, error) {
+					res, err := ec.unmarshalInputAddCommentAndReopenBugInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
-	}
 
-	return ret
-}
+	
+	
 
-func (ec *executionContext) marshalNOperationEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdge(ctx context.Context, sel ast.SelectionSet, v *models.OperationEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNAddCommentAndReopenBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentAndReopenBugPayload) graphql.Marshaler {
+					return ec._AddCommentAndReopenBugPayload(ctx, sel, & v)
 		}
-		return graphql.Null
-	}
-	return ec._OperationEdge(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx context.Context, sel ast.SelectionSet, v *models.PageInfo) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNAddCommentAndReopenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentAndReopenBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentAndReopenBugPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._AddCommentAndReopenBugPayload(ctx, sel,  v)
 		}
-		return graphql.Null
-	}
-	return ec._PageInfo(ctx, sel, v)
-}
-
-func (ec *executionContext) marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx context.Context, sel ast.SelectionSet, v *bug.SetStatusOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) unmarshalNAddCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentInput(ctx context.Context, v interface{}) (models.AddCommentInput, error) {
+					res, err := ec.unmarshalInputAddCommentInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
-		return graphql.Null
-	}
-	return ec._SetStatusOperation(ctx, sel, v)
-}
 
-func (ec *executionContext) unmarshalNSetTitleInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitleInput(ctx context.Context, v interface{}) (models.SetTitleInput, error) {
-	res, err := ec.unmarshalInputSetTitleInput(ctx, v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+	
 
-func (ec *executionContext) marshalNSetTitleOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetTitleOperation(ctx context.Context, sel ast.SelectionSet, v *bug.SetTitleOperation) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNAddCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐAddCommentOperation(ctx context.Context, sel ast.SelectionSet, v *bug.AddCommentOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._AddCommentOperation(ctx, sel,  v)
 		}
-		return graphql.Null
-	}
-	return ec._SetTitleOperation(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalNSetTitlePayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx context.Context, sel ast.SelectionSet, v models.SetTitlePayload) graphql.Marshaler {
-	return ec._SetTitlePayload(ctx, sel, &v)
-}
+	
+		func (ec *executionContext) marshalNAddCommentPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx context.Context, sel ast.SelectionSet, v models.AddCommentPayload) graphql.Marshaler {
+					return ec._AddCommentPayload(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalNSetTitlePayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx context.Context, sel ast.SelectionSet, v *models.SetTitlePayload) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNAddCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐAddCommentPayload(ctx context.Context, sel ast.SelectionSet, v *models.AddCommentPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._AddCommentPayload(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNBoolean2bool(ctx context.Context, v interface{}) (bool, error) {
+							res, err := graphql.UnmarshalBoolean(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler {
+					res := graphql.MarshalBoolean(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+
+	
+		func (ec *executionContext) marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx context.Context, sel ast.SelectionSet, v models.BugWrapper) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._Bug(ctx, sel,  v)
 		}
-		return graphql.Null
-	}
-	return ec._SetTitlePayload(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) unmarshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx context.Context, v interface{}) (models.Status, error) {
-	var res models.Status
-	err := res.UnmarshalGQL(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNBug2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapperᚄ(ctx context.Context, sel ast.SelectionSet, v []models.BugWrapper) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx context.Context, sel ast.SelectionSet, v models.Status) graphql.Marshaler {
-	return v
-}
+	
+		func (ec *executionContext) marshalNBugConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx context.Context, sel ast.SelectionSet, v models.BugConnection) graphql.Marshaler {
+					return ec._BugConnection(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) unmarshalNString2string(ctx context.Context, v interface{}) (string, error) {
-	res, err := graphql.UnmarshalString(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNBugConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugConnection(ctx context.Context, sel ast.SelectionSet, v *models.BugConnection) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._BugConnection(ctx, sel,  v)
+		}
+	
 
-func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
-	res := graphql.MarshalString(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNBugEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.BugEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNBugEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNBugEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugEdge(ctx context.Context, sel ast.SelectionSet, v *models.BugEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._BugEdge(ctx, sel,  v)
 		}
-	}
-	return res
-}
+	
 
-func (ec *executionContext) unmarshalNTime2timeᚐTime(ctx context.Context, v interface{}) (time.Time, error) {
-	res, err := graphql.UnmarshalTime(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNChangeLabelPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx context.Context, sel ast.SelectionSet, v models.ChangeLabelPayload) graphql.Marshaler {
+					return ec._ChangeLabelPayload(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalNTime2timeᚐTime(ctx context.Context, sel ast.SelectionSet, v time.Time) graphql.Marshaler {
-	res := graphql.MarshalTime(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNChangeLabelPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelPayload(ctx context.Context, sel ast.SelectionSet, v *models.ChangeLabelPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._ChangeLabelPayload(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNCloseBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugInput(ctx context.Context, v interface{}) (models.CloseBugInput, error) {
+					res, err := ec.unmarshalInputCloseBugInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
-	}
-	return res
-}
 
-func (ec *executionContext) unmarshalNTime2ᚖtimeᚐTime(ctx context.Context, v interface{}) (*time.Time, error) {
-	res, err := graphql.UnmarshalTime(v)
-	return &res, graphql.ErrorOnPath(ctx, err)
-}
+	
+	
 
-func (ec *executionContext) marshalNTime2ᚖtimeᚐTime(ctx context.Context, sel ast.SelectionSet, v *time.Time) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNCloseBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v models.CloseBugPayload) graphql.Marshaler {
+					return ec._CloseBugPayload(ctx, sel, & v)
 		}
-		return graphql.Null
-	}
-	res := graphql.MarshalTime(*v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+
+	
+		func (ec *executionContext) marshalNCloseBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCloseBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.CloseBugPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._CloseBugPayload(ctx, sel,  v)
 		}
-	}
-	return res
-}
+	
 
-func (ec *executionContext) marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx context.Context, sel ast.SelectionSet, v bug.TimelineItem) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNColor2imageᚋcolorᚐRGBA(ctx context.Context, sel ast.SelectionSet, v color.RGBA) graphql.Marshaler {
+					return ec._Color(ctx, sel, & v)
 		}
-		return graphql.Null
-	}
-	return ec._TimelineItem(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalNTimelineItem2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItemᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.TimelineItem) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalNColor2ᚖimageᚋcolorᚐRGBA(ctx context.Context, sel ast.SelectionSet, v *color.RGBA) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._Color(ctx, sel,  v)
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+
+	
+		func (ec *executionContext) marshalNComment2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentᚄ(ctx context.Context, sel ast.SelectionSet, v []*bug.Comment) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNComment2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐComment(ctx context.Context, sel ast.SelectionSet, v *bug.Comment) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._Comment(ctx, sel,  v)
 		}
+	
 
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNCommentConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx context.Context, sel ast.SelectionSet, v models.CommentConnection) graphql.Marshaler {
+					return ec._CommentConnection(ctx, sel, & v)
 		}
-	}
+	
 
-	return ret
-}
-
-func (ec *executionContext) marshalNTimelineItemConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx context.Context, sel ast.SelectionSet, v models.TimelineItemConnection) graphql.Marshaler {
-	return ec._TimelineItemConnection(ctx, sel, &v)
-}
+	
+		func (ec *executionContext) marshalNCommentConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentConnection(ctx context.Context, sel ast.SelectionSet, v *models.CommentConnection) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._CommentConnection(ctx, sel,  v)
+		}
+	
 
-func (ec *executionContext) marshalNTimelineItemConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx context.Context, sel ast.SelectionSet, v *models.TimelineItemConnection) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNCommentEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.CommentEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNCommentEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNCommentEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐCommentEdge(ctx context.Context, sel ast.SelectionSet, v *models.CommentEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._CommentEdge(ctx, sel,  v)
 		}
-		return graphql.Null
-	}
-	return ec._TimelineItemConnection(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalNTimelineItemEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.TimelineItemEdge) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalNCommentHistoryStep2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStep(ctx context.Context, sel ast.SelectionSet, v bug.CommentHistoryStep) graphql.Marshaler {
+					return ec._CommentHistoryStep(ctx, sel, & v)
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+
+	
+		func (ec *executionContext) marshalNCommentHistoryStep2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStepᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.CommentHistoryStep) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNCommentHistoryStep2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCommentHistoryStep(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalNTimelineItemEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdge(ctx, sel, v[i])
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNCreateOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐCreateOperation(ctx context.Context, sel ast.SelectionSet, v *bug.CreateOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._CreateOperation(ctx, sel,  v)
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+		func (ec *executionContext) unmarshalNEditCommentInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentInput(ctx context.Context, v interface{}) (models.EditCommentInput, error) {
+					res, err := ec.unmarshalInputEditCommentInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
 
-	}
-	wg.Wait()
+	
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNEditCommentOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐEditCommentOperation(ctx context.Context, sel ast.SelectionSet, v *bug.EditCommentOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._EditCommentOperation(ctx, sel,  v)
 		}
-	}
-
-	return ret
-}
+	
 
-func (ec *executionContext) marshalNTimelineItemEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdge(ctx context.Context, sel ast.SelectionSet, v *models.TimelineItemEdge) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNEditCommentPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx context.Context, sel ast.SelectionSet, v models.EditCommentPayload) graphql.Marshaler {
+					return ec._EditCommentPayload(ctx, sel, & v)
 		}
-		return graphql.Null
-	}
-	return ec._TimelineItemEdge(ctx, sel, v)
-}
+	
 
-func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx context.Context, sel ast.SelectionSet, v introspection.Directive) graphql.Marshaler {
-	return ec.___Directive(ctx, sel, &v)
-}
+	
+		func (ec *executionContext) marshalNEditCommentPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐEditCommentPayload(ctx context.Context, sel ast.SelectionSet, v *models.EditCommentPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._EditCommentPayload(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx context.Context, v interface{}) (repository.Hash, error) {
+						var res repository.Hash
+						err := res.UnmarshalGQL(v)
+					return res, graphql.ErrorOnPath(ctx, err)
+		}
 
-func (ec *executionContext) marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Directive) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx context.Context, sel ast.SelectionSet, v repository.Hash) graphql.Marshaler {
+						return v
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+		func (ec *executionContext) unmarshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, v interface{}) ([]repository.Hash, error) {
+				var vSlice []interface{}
+				if v != nil {
+					vSlice = graphql.CoerceList(v)
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+				var err error
+				res := make([]repository.Hash, len(vSlice))
+				for i := range vSlice {
+					ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
+					res[i], err = ec.unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, vSlice[i])
+					if err != nil {
+						return nil, err
+					}
+				}
+				return res, nil
 		}
 
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, sel ast.SelectionSet, v []repository.Hash) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+				for i := range v {
+						ret[i] = ec.marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, sel, v[i])
+				}
+				
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx context.Context, sel ast.SelectionSet, v models.IdentityWrapper) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._Identity(ctx, sel,  v)
 		}
-	}
+	
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalNIdentity2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapperᚄ(ctx context.Context, sel ast.SelectionSet, v []models.IdentityWrapper) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) unmarshalN__DirectiveLocation2string(ctx context.Context, v interface{}) (string, error) {
-	res, err := graphql.UnmarshalString(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNIdentityConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋconnectionsᚐResult(ctx context.Context, sel ast.SelectionSet, v connections.Result[NodeT any]) graphql.Marshaler {
+					return ec._IdentityConnection(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalN__DirectiveLocation2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
-	res := graphql.MarshalString(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNIdentityConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋconnectionsᚐResult(ctx context.Context, sel ast.SelectionSet, v *connections.Result[NodeT any]) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._IdentityConnection(ctx, sel,  v)
 		}
-	}
-	return res
-}
+	
 
-func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, v interface{}) ([]string, error) {
-	var vSlice []interface{}
-	if v != nil {
-		vSlice = graphql.CoerceList(v)
-	}
-	var err error
-	res := make([]string, len(vSlice))
-	for i := range vSlice {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
-		res[i], err = ec.unmarshalN__DirectiveLocation2string(ctx, vSlice[i])
-		if err != nil {
-			return nil, err
+	
+		func (ec *executionContext) marshalNIdentityEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.IdentityEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNIdentityEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNIdentityEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityEdge(ctx context.Context, sel ast.SelectionSet, v *models.IdentityEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._IdentityEdge(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNInt2int(ctx context.Context, v interface{}) (int, error) {
+							res, err := graphql.UnmarshalInt(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNInt2int(ctx context.Context, sel ast.SelectionSet, v int) graphql.Marshaler {
+					res := graphql.MarshalInt(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+
+	
+		func (ec *executionContext) marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx context.Context, sel ast.SelectionSet, v bug.Label) graphql.Marshaler {
+					return ec._Label(ctx, sel, & v)
+		}
+	
+
+	
+		func (ec *executionContext) marshalNLabel2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.Label) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNLabel2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabel(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNLabelChangeOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeOperation(ctx context.Context, sel ast.SelectionSet, v *bug.LabelChangeOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._LabelChangeOperation(ctx, sel,  v)
 		}
-	}
-	return res, nil
-}
+	
 
-func (ec *executionContext) marshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+		func (ec *executionContext) marshalNLabelChangeResult2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx context.Context, sel ast.SelectionSet, v []*bug.LabelChangeResult) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalOLabelChangeResult2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__DirectiveLocation2string(ctx, sel, v[i])
+				 wg.Wait() 
+				
+				return ret
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+		func (ec *executionContext) unmarshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx context.Context, v interface{}) (models.LabelChangeStatus, error) {
+						var res models.LabelChangeStatus
+						err := res.UnmarshalGQL(v)
+					return res, graphql.ErrorOnPath(ctx, err)
 		}
 
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNLabelChangeStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelChangeStatus(ctx context.Context, sel ast.SelectionSet, v models.LabelChangeStatus) graphql.Marshaler {
+						return v
 		}
-	}
-
-	return ret
-}
-
-func (ec *executionContext) marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx context.Context, sel ast.SelectionSet, v introspection.EnumValue) graphql.Marshaler {
-	return ec.___EnumValue(ctx, sel, &v)
-}
-
-func (ec *executionContext) marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx context.Context, sel ast.SelectionSet, v introspection.Field) graphql.Marshaler {
-	return ec.___Field(ctx, sel, &v)
-}
+	
 
-func (ec *executionContext) marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx context.Context, sel ast.SelectionSet, v introspection.InputValue) graphql.Marshaler {
-	return ec.___InputValue(ctx, sel, &v)
-}
+	
+		func (ec *executionContext) marshalNLabelConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx context.Context, sel ast.SelectionSet, v models.LabelConnection) graphql.Marshaler {
+					return ec._LabelConnection(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalNLabelConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelConnection(ctx context.Context, sel ast.SelectionSet, v *models.LabelConnection) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._LabelConnection(ctx, sel,  v)
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+
+	
+		func (ec *executionContext) marshalNLabelEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.LabelEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNLabelEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i])
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNLabelEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐLabelEdge(ctx context.Context, sel ast.SelectionSet, v *models.LabelEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._LabelEdge(ctx, sel,  v)
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+		func (ec *executionContext) unmarshalNNewBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugInput(ctx context.Context, v interface{}) (models.NewBugInput, error) {
+					res, err := ec.unmarshalInputNewBugInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
 
-	}
-	wg.Wait()
+	
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNNewBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx context.Context, sel ast.SelectionSet, v models.NewBugPayload) graphql.Marshaler {
+					return ec._NewBugPayload(ctx, sel, & v)
 		}
-	}
-
-	return ret
-}
-
-func (ec *executionContext) marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v introspection.Type) graphql.Marshaler {
-	return ec.___Type(ctx, sel, &v)
-}
+	
 
-func (ec *executionContext) marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler {
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
-		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
-				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i])
+	
+		func (ec *executionContext) marshalNNewBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐNewBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.NewBugPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._NewBugPayload(ctx, sel,  v)
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+		func (ec *executionContext) unmarshalNOpenBugInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugInput(ctx context.Context, v interface{}) (models.OpenBugInput, error) {
+					res, err := ec.unmarshalInputOpenBugInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
 		}
 
-	}
-	wg.Wait()
+	
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNOpenBugPayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx context.Context, sel ast.SelectionSet, v models.OpenBugPayload) graphql.Marshaler {
+					return ec._OpenBugPayload(ctx, sel, & v)
 		}
-	}
+	
 
-	return ret
-}
-
-func (ec *executionContext) marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v *introspection.Type) graphql.Marshaler {
-	if v == nil {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNOpenBugPayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOpenBugPayload(ctx context.Context, sel ast.SelectionSet, v *models.OpenBugPayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._OpenBugPayload(ctx, sel,  v)
 		}
-		return graphql.Null
-	}
-	return ec.___Type(ctx, sel, v)
-}
-
-func (ec *executionContext) unmarshalN__TypeKind2string(ctx context.Context, v interface{}) (string, error) {
-	res, err := graphql.UnmarshalString(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
 
-func (ec *executionContext) marshalN__TypeKind2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
-	res := graphql.MarshalString(v)
-	if res == graphql.Null {
-		if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
-			ec.Errorf(ctx, "must not be null")
+	
+		func (ec *executionContext) marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋentityᚋdagᚐOperation(ctx context.Context, sel ast.SelectionSet, v dag.Operation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._Operation(ctx, sel,  v)
 		}
-	}
-	return res
-}
-
-func (ec *executionContext) unmarshalOBoolean2bool(ctx context.Context, v interface{}) (bool, error) {
-	res, err := graphql.UnmarshalBoolean(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
-
-func (ec *executionContext) marshalOBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler {
-	res := graphql.MarshalBoolean(v)
-	return res
-}
-
-func (ec *executionContext) unmarshalOBoolean2ᚖbool(ctx context.Context, v interface{}) (*bool, error) {
-	if v == nil {
-		return nil, nil
-	}
-	res, err := graphql.UnmarshalBoolean(v)
-	return &res, graphql.ErrorOnPath(ctx, err)
-}
-
-func (ec *executionContext) marshalOBoolean2ᚖbool(ctx context.Context, sel ast.SelectionSet, v *bool) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	res := graphql.MarshalBoolean(*v)
-	return res
-}
+	
 
-func (ec *executionContext) marshalOBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx context.Context, sel ast.SelectionSet, v models.BugWrapper) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec._Bug(ctx, sel, v)
-}
+	
+		func (ec *executionContext) marshalNOperation2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋentityᚋdagᚐOperationᚄ(ctx context.Context, sel ast.SelectionSet, v []dag.Operation) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNOperation2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋentityᚋdagᚐOperation(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) unmarshalOChangeLabelInput2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelInput(ctx context.Context, v interface{}) (*models.ChangeLabelInput, error) {
-	if v == nil {
-		return nil, nil
-	}
-	res, err := ec.unmarshalInputChangeLabelInput(ctx, v)
-	return &res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNOperationConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx context.Context, sel ast.SelectionSet, v models.OperationConnection) graphql.Marshaler {
+					return ec._OperationConnection(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, v interface{}) ([]repository.Hash, error) {
-	if v == nil {
-		return nil, nil
-	}
-	var vSlice []interface{}
-	if v != nil {
-		vSlice = graphql.CoerceList(v)
-	}
-	var err error
-	res := make([]repository.Hash, len(vSlice))
-	for i := range vSlice {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
-		res[i], err = ec.unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, vSlice[i])
-		if err != nil {
-			return nil, err
+	
+		func (ec *executionContext) marshalNOperationConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationConnection(ctx context.Context, sel ast.SelectionSet, v *models.OperationConnection) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._OperationConnection(ctx, sel,  v)
 		}
-	}
-	return res, nil
-}
+	
 
-func (ec *executionContext) marshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, sel ast.SelectionSet, v []repository.Hash) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	for i := range v {
-		ret[i] = ec.marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, sel, v[i])
-	}
+	
+		func (ec *executionContext) marshalNOperationEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.OperationEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNOperationEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNOperationEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐOperationEdge(ctx context.Context, sel ast.SelectionSet, v *models.OperationEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._OperationEdge(ctx, sel,  v)
+		}
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalNPageInfo2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐPageInfo(ctx context.Context, sel ast.SelectionSet, v *models.PageInfo) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._PageInfo(ctx, sel,  v)
 		}
-	}
+	
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalNSetStatusOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetStatusOperation(ctx context.Context, sel ast.SelectionSet, v *bug.SetStatusOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._SetStatusOperation(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNSetTitleInput2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitleInput(ctx context.Context, v interface{}) (models.SetTitleInput, error) {
+					res, err := ec.unmarshalInputSetTitleInput(ctx, v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
 
-func (ec *executionContext) marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx context.Context, sel ast.SelectionSet, v models.IdentityWrapper) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec._Identity(ctx, sel, v)
-}
+	
+	
 
-func (ec *executionContext) unmarshalOInt2ᚖint(ctx context.Context, v interface{}) (*int, error) {
-	if v == nil {
-		return nil, nil
-	}
-	res, err := graphql.UnmarshalInt(v)
-	return &res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNSetTitleOperation2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐSetTitleOperation(ctx context.Context, sel ast.SelectionSet, v *bug.SetTitleOperation) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._SetTitleOperation(ctx, sel,  v)
+		}
+	
 
-func (ec *executionContext) marshalOInt2ᚖint(ctx context.Context, sel ast.SelectionSet, v *int) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	res := graphql.MarshalInt(*v)
-	return res
-}
+	
+		func (ec *executionContext) marshalNSetTitlePayload2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx context.Context, sel ast.SelectionSet, v models.SetTitlePayload) graphql.Marshaler {
+					return ec._SetTitlePayload(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalOLabelChangeResult2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx context.Context, sel ast.SelectionSet, v *bug.LabelChangeResult) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec._LabelChangeResult(ctx, sel, v)
-}
+	
+		func (ec *executionContext) marshalNSetTitlePayload2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐSetTitlePayload(ctx context.Context, sel ast.SelectionSet, v *models.SetTitlePayload) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._SetTitlePayload(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx context.Context, v interface{}) (models.Status, error) {
+						var res models.Status
+						err := res.UnmarshalGQL(v)
+					return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNStatus2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐStatus(ctx context.Context, sel ast.SelectionSet, v models.Status) graphql.Marshaler {
+						return v
+		}
+	
+		func (ec *executionContext) unmarshalNString2string(ctx context.Context, v interface{}) (string, error) {
+							res, err := graphql.UnmarshalString(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
+					res := graphql.MarshalString(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+		func (ec *executionContext) unmarshalNTime2timeᚐTime(ctx context.Context, v interface{}) (time.Time, error) {
+							res, err := graphql.UnmarshalTime(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNTime2timeᚐTime(ctx context.Context, sel ast.SelectionSet, v time.Time) graphql.Marshaler {
+					res := graphql.MarshalTime(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+		func (ec *executionContext) unmarshalNTime2ᚖtimeᚐTime(ctx context.Context, v interface{}) (*time.Time, error) {
+							res, err := graphql.UnmarshalTime(v)
+						return &res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalNTime2ᚖtimeᚐTime(ctx context.Context, sel ast.SelectionSet, v *time.Time) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					res := graphql.MarshalTime(*v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+
+	
+		func (ec *executionContext) marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx context.Context, sel ast.SelectionSet, v bug.TimelineItem) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._TimelineItem(ctx, sel,  v)
+		}
+	
 
-func (ec *executionContext) marshalORepository2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐRepository(ctx context.Context, sel ast.SelectionSet, v *models.Repository) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec._Repository(ctx, sel, v)
-}
+	
+		func (ec *executionContext) marshalNTimelineItem2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItemᚄ(ctx context.Context, sel ast.SelectionSet, v []bug.TimelineItem) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNTimelineItem2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐTimelineItem(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) unmarshalOString2string(ctx context.Context, v interface{}) (string, error) {
-	res, err := graphql.UnmarshalString(v)
-	return res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalNTimelineItemConnection2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx context.Context, sel ast.SelectionSet, v models.TimelineItemConnection) graphql.Marshaler {
+					return ec._TimelineItemConnection(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalOString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
-	res := graphql.MarshalString(v)
-	return res
-}
+	
+		func (ec *executionContext) marshalNTimelineItemConnection2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemConnection(ctx context.Context, sel ast.SelectionSet, v *models.TimelineItemConnection) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._TimelineItemConnection(ctx, sel,  v)
+		}
+	
 
-func (ec *executionContext) unmarshalOString2ᚕstringᚄ(ctx context.Context, v interface{}) ([]string, error) {
-	if v == nil {
-		return nil, nil
-	}
-	var vSlice []interface{}
-	if v != nil {
-		vSlice = graphql.CoerceList(v)
-	}
-	var err error
-	res := make([]string, len(vSlice))
-	for i := range vSlice {
-		ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
-		res[i], err = ec.unmarshalNString2string(ctx, vSlice[i])
-		if err != nil {
-			return nil, err
+	
+		func (ec *executionContext) marshalNTimelineItemEdge2ᚕᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdgeᚄ(ctx context.Context, sel ast.SelectionSet, v []*models.TimelineItemEdge) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalNTimelineItemEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdge(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalNTimelineItemEdge2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐTimelineItemEdge(ctx context.Context, sel ast.SelectionSet, v *models.TimelineItemEdge) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec._TimelineItemEdge(ctx, sel,  v)
 		}
-	}
-	return res, nil
-}
+	
 
-func (ec *executionContext) marshalOString2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	for i := range v {
-		ret[i] = ec.marshalNString2string(ctx, sel, v[i])
-	}
+	
+		func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx context.Context, sel ast.SelectionSet, v introspection.Directive) graphql.Marshaler {
+					return ec.___Directive(ctx, sel, & v)
+		}
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalN__Directive2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirectiveᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Directive) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+		func (ec *executionContext) unmarshalN__DirectiveLocation2string(ctx context.Context, v interface{}) (string, error) {
+							res, err := graphql.UnmarshalString(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalN__DirectiveLocation2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
+					res := graphql.MarshalString(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+		func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, v interface{}) ([]string, error) {
+				var vSlice []interface{}
+				if v != nil {
+					vSlice = graphql.CoerceList(v)
+				}
+				var err error
+				res := make([]string, len(vSlice))
+				for i := range vSlice {
+					ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
+					res[i], err = ec.unmarshalN__DirectiveLocation2string(ctx, vSlice[i])
+					if err != nil {
+						return nil, err
+					}
+				}
+				return res, nil
 		}
-	}
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__DirectiveLocation2string(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) unmarshalOString2ᚖstring(ctx context.Context, v interface{}) (*string, error) {
-	if v == nil {
-		return nil, nil
-	}
-	res, err := graphql.UnmarshalString(v)
-	return &res, graphql.ErrorOnPath(ctx, err)
-}
+	
+		func (ec *executionContext) marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx context.Context, sel ast.SelectionSet, v introspection.EnumValue) graphql.Marshaler {
+					return ec.___EnumValue(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalOString2ᚖstring(ctx context.Context, sel ast.SelectionSet, v *string) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	res := graphql.MarshalString(*v)
-	return res
-}
+	
+		func (ec *executionContext) marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx context.Context, sel ast.SelectionSet, v introspection.Field) graphql.Marshaler {
+					return ec.___Field(ctx, sel, & v)
+		}
+	
 
-func (ec *executionContext) marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.EnumValue) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx context.Context, sel ast.SelectionSet, v introspection.InputValue) graphql.Marshaler {
+					return ec.___InputValue(ctx, sel, & v)
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+
+	
+		func (ec *executionContext) marshalN__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
 		}
+	
 
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v introspection.Type) graphql.Marshaler {
+					return ec.___Type(ctx, sel, & v)
 		}
-	}
+	
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalN__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler {
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+
+	
+		func (ec *executionContext) marshalN__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v *introspection.Type) graphql.Marshaler {
+					if v == nil {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						return graphql.Null
+					}
+					return ec.___Type(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalN__TypeKind2string(ctx context.Context, v interface{}) (string, error) {
+							res, err := graphql.UnmarshalString(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalN__TypeKind2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
+					res := graphql.MarshalString(v)
+						if res == graphql.Null {
+							if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) {
+								ec.Errorf(ctx, "the requested element is null which the schema does not allow")
+							}
+						}
+						return res
+		}
+	
+		func (ec *executionContext) unmarshalOBoolean2bool(ctx context.Context, v interface{}) (bool, error) {
+							res, err := graphql.UnmarshalBoolean(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalOBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler {
+					res := graphql.MarshalBoolean(v)
+						return res
+		}
+	
+		func (ec *executionContext) unmarshalOBoolean2ᚖbool(ctx context.Context, v interface{}) (*bool, error) {
+				if v == nil { return nil, nil }
+							res, err := graphql.UnmarshalBoolean(v)
+						return &res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+		func (ec *executionContext) marshalOBoolean2ᚖbool(ctx context.Context, sel ast.SelectionSet, v *bool) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					res := graphql.MarshalBoolean(*v)
+						return res
+		}
+	
 
-func (ec *executionContext) marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐFieldᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Field) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalOBug2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐBugWrapper(ctx context.Context, sel ast.SelectionSet, v models.BugWrapper) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec._Bug(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalOChangeLabelInput2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐChangeLabelInput(ctx context.Context, v interface{}) (*models.ChangeLabelInput, error) {
+				if v == nil { return nil, nil }
+					res, err := ec.unmarshalInputChangeLabelInput(ctx, v)
+						return &res, graphql.ErrorOnPath(ctx, err)
+		}
+
+	
+	
+		func (ec *executionContext) unmarshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, v interface{}) ([]repository.Hash, error) {
+				if v == nil { return nil, nil }
+				var vSlice []interface{}
+				if v != nil {
+					vSlice = graphql.CoerceList(v)
+				}
+				var err error
+				res := make([]repository.Hash, len(vSlice))
+				for i := range vSlice {
+					ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
+					res[i], err = ec.unmarshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, vSlice[i])
+					if err != nil {
+						return nil, err
+					}
+				}
+				return res, nil
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+
+	
+		func (ec *executionContext) marshalOHash2ᚕgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHashᚄ(ctx context.Context, sel ast.SelectionSet, v []repository.Hash) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+				for i := range v {
+						ret[i] = ec.marshalNHash2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋrepositoryᚐHash(ctx, sel, v[i])
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i])
+				
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+
+	
+		func (ec *executionContext) marshalOIdentity2githubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐIdentityWrapper(ctx context.Context, sel ast.SelectionSet, v models.IdentityWrapper) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec._Identity(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalOInt2ᚖint(ctx context.Context, v interface{}) (*int, error) {
+				if v == nil { return nil, nil }
+							res, err := graphql.UnmarshalInt(v)
+						return &res, graphql.ErrorOnPath(ctx, err)
 		}
 
-	}
-	wg.Wait()
+	
+		func (ec *executionContext) marshalOInt2ᚖint(ctx context.Context, sel ast.SelectionSet, v *int) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					res := graphql.MarshalInt(*v)
+						return res
+		}
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalOLabelChangeResult2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋbugᚐLabelChangeResult(ctx context.Context, sel ast.SelectionSet, v *bug.LabelChangeResult) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec._LabelChangeResult(ctx, sel,  v)
 		}
-	}
+	
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalORepository2ᚖgithubᚗcomᚋMichaelMureᚋgitᚑbugᚋapiᚋgraphqlᚋmodelsᚐRepository(ctx context.Context, sel ast.SelectionSet, v *models.Repository) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec._Repository(ctx, sel,  v)
+		}
+	
+		func (ec *executionContext) unmarshalOString2string(ctx context.Context, v interface{}) (string, error) {
+							res, err := graphql.UnmarshalString(v)
+						return res, graphql.ErrorOnPath(ctx, err)
+		}
 
-func (ec *executionContext) marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalOString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler {
+					res := graphql.MarshalString(v)
+						return res
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+		func (ec *executionContext) unmarshalOString2ᚕstringᚄ(ctx context.Context, v interface{}) ([]string, error) {
+				if v == nil { return nil, nil }
+				var vSlice []interface{}
+				if v != nil {
+					vSlice = graphql.CoerceList(v)
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i])
-		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+				var err error
+				res := make([]string, len(vSlice))
+				for i := range vSlice {
+					ctx := graphql.WithPathContext(ctx, graphql.NewPathWithIndex(i))
+					res[i], err = ec.unmarshalNString2string(ctx, vSlice[i])
+					if err != nil {
+						return nil, err
+					}
+				}
+				return res, nil
 		}
 
-	}
-	wg.Wait()
-
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalOString2ᚕstringᚄ(ctx context.Context, sel ast.SelectionSet, v []string) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+				for i := range v {
+						ret[i] = ec.marshalNString2string(ctx, sel, v[i])
+				}
+				
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
+		func (ec *executionContext) unmarshalOString2ᚖstring(ctx context.Context, v interface{}) (*string, error) {
+				if v == nil { return nil, nil }
+							res, err := graphql.UnmarshalString(v)
+						return &res, graphql.ErrorOnPath(ctx, err)
 		}
-	}
-
-	return ret
-}
-
-func (ec *executionContext) marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema(ctx context.Context, sel ast.SelectionSet, v *introspection.Schema) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec.___Schema(ctx, sel, v)
-}
 
-func (ec *executionContext) marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	ret := make(graphql.Array, len(v))
-	var wg sync.WaitGroup
-	isLen1 := len(v) == 1
-	if !isLen1 {
-		wg.Add(len(v))
-	}
-	for i := range v {
-		i := i
-		fc := &graphql.FieldContext{
-			Index:  &i,
-			Result: &v[i],
+	
+		func (ec *executionContext) marshalOString2ᚖstring(ctx context.Context, sel ast.SelectionSet, v *string) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					res := graphql.MarshalString(*v)
+						return res
 		}
-		ctx := graphql.WithFieldContext(ctx, fc)
-		f := func(i int) {
-			defer func() {
-				if r := recover(); r != nil {
-					ec.Error(ctx, ec.Recover(ctx, r))
-					ret = nil
+	
+
+	
+		func (ec *executionContext) marshalO__EnumValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.EnumValue) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__EnumValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐEnumValue(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
 				}
-			}()
-			if !isLen1 {
-				defer wg.Done()
-			}
-			ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i])
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
 		}
-		if isLen1 {
-			f(i)
-		} else {
-			go f(i)
+	
+
+	
+		func (ec *executionContext) marshalO__Field2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐFieldᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Field) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__Field2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐField(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
 		}
+	
 
-	}
-	wg.Wait()
+	
+		func (ec *executionContext) marshalO__InputValue2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValueᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.InputValue) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__InputValue2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐInputValue(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-	for _, e := range ret {
-		if e == graphql.Null {
-			return graphql.Null
+	
+		func (ec *executionContext) marshalO__Schema2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐSchema(ctx context.Context, sel ast.SelectionSet, v *introspection.Schema) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec.___Schema(ctx, sel,  v)
 		}
-	}
+	
 
-	return ret
-}
+	
+		func (ec *executionContext) marshalO__Type2ᚕgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐTypeᚄ(ctx context.Context, sel ast.SelectionSet, v []introspection.Type) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+				ret := make(graphql.Array, len(v))
+					var wg sync.WaitGroup
+					isLen1 := len(v) == 1
+					if !isLen1 {
+						wg.Add(len(v))
+					}
+				for i := range v {
+						i := i
+						fc := &graphql.FieldContext{
+							Index: &i,
+							Result: &v[i],
+						}
+						ctx := graphql.WithFieldContext(ctx, fc)
+						f := func(i int) {
+							defer func() {
+								if r := recover(); r != nil {
+									ec.Error(ctx, ec.Recover(ctx, r))
+									ret = nil
+								}
+							}()
+							if !isLen1 {
+								defer wg.Done()
+							}
+							ret[i] = ec.marshalN__Type2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx, sel, v[i])
+						}
+						if isLen1 {
+							f(i)
+						} else {
+							go f(i)
+						}
+					
+				}
+				 wg.Wait() 
+				
+					for _, e := range ret {
+						if e == graphql.Null {
+							return graphql.Null
+						}
+					}
+				
+				return ret
+		}
+	
 
-func (ec *executionContext) marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v *introspection.Type) graphql.Marshaler {
-	if v == nil {
-		return graphql.Null
-	}
-	return ec.___Type(ctx, sel, v)
-}
+	
+		func (ec *executionContext) marshalO__Type2ᚖgithubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐType(ctx context.Context, sel ast.SelectionSet, v *introspection.Type) graphql.Marshaler {
+					if v == nil {
+						return graphql.Null
+					}
+					return ec.___Type(ctx, sel,  v)
+		}
 
 // endregion ***************************** type.gotpl *****************************
diff --git a/api/graphql/models/edges.go b/api/graphql/models/edges.go
deleted file mode 100644
index 6a331e3e98798923df3c58a130c929d334755366..0000000000000000000000000000000000000000
--- a/api/graphql/models/edges.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package models
-
-// GetCursor return the cursor entry of an edge
-func (e OperationEdge) GetCursor() string {
-	return e.Cursor
-}
-
-// GetCursor return the cursor entry of an edge
-func (e BugEdge) GetCursor() string {
-	return e.Cursor
-}
-
-// GetCursor return the cursor entry of an edge
-func (e CommentEdge) GetCursor() string {
-	return e.Cursor
-}
-
-// GetCursor return the cursor entry of an edge
-func (e TimelineItemEdge) GetCursor() string {
-	return e.Cursor
-}
-
-// GetCursor return the cursor entry of an edge
-func (e IdentityEdge) GetCursor() string {
-	return e.Cursor
-}
-
-// GetCursor return the cursor entry of an edge
-func (e LabelEdge) GetCursor() string {
-	return e.Cursor
-}
diff --git a/api/graphql/models/gen_models.go b/api/graphql/models/gen_models.go
index 203d645104812e204a1e9866a16b4ce72a1e01c5..2c1fff803bc0fbdf7777ed5fa53d47b91fb97f84 100644
--- a/api/graphql/models/gen_models.go
+++ b/api/graphql/models/gen_models.go
@@ -8,6 +8,7 @@ import (
 	"strconv"
 
 	"github.com/MichaelMure/git-bug/bug"
+	"github.com/MichaelMure/git-bug/entity/dag"
 	"github.com/MichaelMure/git-bug/repository"
 )
 
@@ -183,13 +184,6 @@ type EditCommentPayload struct {
 	Operation *bug.EditCommentOperation `json:"operation"`
 }
 
-type IdentityConnection struct {
-	Edges      []*IdentityEdge   `json:"edges"`
-	Nodes      []IdentityWrapper `json:"nodes"`
-	PageInfo   *PageInfo         `json:"pageInfo"`
-	TotalCount int               `json:"totalCount"`
-}
-
 type IdentityEdge struct {
 	Cursor string          `json:"cursor"`
 	Node   IdentityWrapper `json:"node"`
@@ -250,7 +244,7 @@ type OpenBugPayload struct {
 // The connection type for an Operation
 type OperationConnection struct {
 	Edges      []*OperationEdge `json:"edges"`
-	Nodes      []bug.Operation  `json:"nodes"`
+	Nodes      []dag.Operation  `json:"nodes"`
 	PageInfo   *PageInfo        `json:"pageInfo"`
 	TotalCount int              `json:"totalCount"`
 }
@@ -258,7 +252,7 @@ type OperationConnection struct {
 // Represent an Operation
 type OperationEdge struct {
 	Cursor string        `json:"cursor"`
-	Node   bug.Operation `json:"node"`
+	Node   dag.Operation `json:"node"`
 }
 
 // Information about pagination in a connection.
diff --git a/api/graphql/models/lazy_bug.go b/api/graphql/models/lazy_bug.go
index bc26aaca387852845060d469e18deb46ad9f896f..092f2472f5f730123126c5c2edb075b98edf1b60 100644
--- a/api/graphql/models/lazy_bug.go
+++ b/api/graphql/models/lazy_bug.go
@@ -7,6 +7,7 @@ import (
 	"github.com/MichaelMure/git-bug/bug"
 	"github.com/MichaelMure/git-bug/cache"
 	"github.com/MichaelMure/git-bug/entity"
+	"github.com/MichaelMure/git-bug/entity/dag"
 )
 
 // BugWrapper is an interface used by the GraphQL resolvers to handle a bug.
@@ -24,7 +25,7 @@ type BugWrapper interface {
 	Participants() ([]IdentityWrapper, error)
 	CreatedAt() time.Time
 	Timeline() ([]bug.TimelineItem, error)
-	Operations() ([]bug.Operation, error)
+	Operations() ([]dag.Operation, error)
 
 	IsAuthored()
 }
@@ -144,7 +145,7 @@ func (lb *lazyBug) Timeline() ([]bug.TimelineItem, error) {
 	return lb.snap.Timeline, nil
 }
 
-func (lb *lazyBug) Operations() ([]bug.Operation, error) {
+func (lb *lazyBug) Operations() ([]dag.Operation, error) {
 	err := lb.load()
 	if err != nil {
 		return nil, err
@@ -210,6 +211,6 @@ func (l *loadedBug) Timeline() ([]bug.TimelineItem, error) {
 	return l.Snapshot.Timeline, nil
 }
 
-func (l *loadedBug) Operations() ([]bug.Operation, error) {
+func (l *loadedBug) Operations() ([]dag.Operation, error) {
 	return l.Snapshot.Operations, nil
 }
diff --git a/api/graphql/models/models.go b/api/graphql/models/models.go
index 816a04a878c3a79da658fc019446e4aaede891c0..23202e28091e97b0bff3eb22cb851d3c23cfce3d 100644
--- a/api/graphql/models/models.go
+++ b/api/graphql/models/models.go
@@ -5,13 +5,6 @@ import (
 	"github.com/MichaelMure/git-bug/cache"
 )
 
-type ConnectionInput struct {
-	After  *string
-	Before *string
-	First  *int
-	Last   *int
-}
-
 type Repository struct {
 	Cache *cache.MultiRepoCache
 	Repo  *cache.RepoCache
diff --git a/api/graphql/resolvers/bug.go b/api/graphql/resolvers/bug.go
index 815cba8d443962899d663c49b7aa9a3d24ca0c90..cabb8a908b64e1b85c9a221c2409ae5e0695a95f 100644
--- a/api/graphql/resolvers/bug.go
+++ b/api/graphql/resolvers/bug.go
@@ -7,6 +7,7 @@ import (
 	"github.com/MichaelMure/git-bug/api/graphql/graph"
 	"github.com/MichaelMure/git-bug/api/graphql/models"
 	"github.com/MichaelMure/git-bug/bug"
+	"github.com/MichaelMure/git-bug/entity/dag"
 )
 
 var _ graph.BugResolver = &bugResolver{}
@@ -26,18 +27,16 @@ func (bugResolver) Status(_ context.Context, obj models.BugWrapper) (models.Stat
 }
 
 func (bugResolver) Comments(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.CommentConnection, error) {
-	input := models.ConnectionInput{
+	input := connections.Input{
 		Before: before,
 		After:  after,
 		First:  first,
 		Last:   last,
 	}
 
-	edger := func(comment bug.Comment, offset int) connections.Edge {
-		return models.CommentEdge{
-			Node:   &comment,
-			Cursor: connections.OffsetToCursor(offset),
-		}
+	comments, err := obj.Comments()
+	if err != nil {
+		return nil, err
 	}
 
 	conMaker := func(edges []*models.CommentEdge, nodes []bug.Comment, info *models.PageInfo, totalCount int) (*models.CommentConnection, error) {
@@ -53,138 +52,69 @@ func (bugResolver) Comments(_ context.Context, obj models.BugWrapper, after *str
 		}, nil
 	}
 
-	comments, err := obj.Comments()
-	if err != nil {
-		return nil, err
-	}
-
-	return connections.CommentCon(comments, edger, conMaker, input)
+	return connections.Paginate(comments, input)
 }
 
-func (bugResolver) Operations(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.OperationConnection, error) {
-	input := models.ConnectionInput{
+func (bugResolver) Operations(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[dag.Operation], error) {
+	input := connections.Input{
 		Before: before,
 		After:  after,
 		First:  first,
 		Last:   last,
 	}
 
-	edger := func(op bug.Operation, offset int) connections.Edge {
-		return models.OperationEdge{
-			Node:   op,
-			Cursor: connections.OffsetToCursor(offset),
-		}
-	}
-
-	conMaker := func(edges []*models.OperationEdge, nodes []bug.Operation, info *models.PageInfo, totalCount int) (*models.OperationConnection, error) {
-		return &models.OperationConnection{
-			Edges:      edges,
-			Nodes:      nodes,
-			PageInfo:   info,
-			TotalCount: totalCount,
-		}, nil
-	}
-
 	ops, err := obj.Operations()
 	if err != nil {
 		return nil, err
 	}
 
-	return connections.OperationCon(ops, edger, conMaker, input)
+	return connections.Paginate(ops, input)
 }
 
-func (bugResolver) Timeline(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.TimelineItemConnection, error) {
-	input := models.ConnectionInput{
+func (bugResolver) Timeline(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[bug.TimelineItem], error) {
+	input := connections.Input{
 		Before: before,
 		After:  after,
 		First:  first,
 		Last:   last,
 	}
 
-	edger := func(op bug.TimelineItem, offset int) connections.Edge {
-		return models.TimelineItemEdge{
-			Node:   op,
-			Cursor: connections.OffsetToCursor(offset),
-		}
-	}
-
-	conMaker := func(edges []*models.TimelineItemEdge, nodes []bug.TimelineItem, info *models.PageInfo, totalCount int) (*models.TimelineItemConnection, error) {
-		return &models.TimelineItemConnection{
-			Edges:      edges,
-			Nodes:      nodes,
-			PageInfo:   info,
-			TotalCount: totalCount,
-		}, nil
-	}
-
 	timeline, err := obj.Timeline()
 	if err != nil {
 		return nil, err
 	}
 
-	return connections.TimelineItemCon(timeline, edger, conMaker, input)
+	return connections.Paginate(timeline, input)
 }
 
-func (bugResolver) Actors(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.IdentityConnection, error) {
-	input := models.ConnectionInput{
+func (bugResolver) Actors(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[models.IdentityWrapper], error) {
+	input := connections.Input{
 		Before: before,
 		After:  after,
 		First:  first,
 		Last:   last,
 	}
 
-	edger := func(actor models.IdentityWrapper, offset int) connections.Edge {
-		return models.IdentityEdge{
-			Node:   actor,
-			Cursor: connections.OffsetToCursor(offset),
-		}
-	}
-
-	conMaker := func(edges []*models.IdentityEdge, nodes []models.IdentityWrapper, info *models.PageInfo, totalCount int) (*models.IdentityConnection, error) {
-		return &models.IdentityConnection{
-			Edges:      edges,
-			Nodes:      nodes,
-			PageInfo:   info,
-			TotalCount: totalCount,
-		}, nil
-	}
-
 	actors, err := obj.Actors()
 	if err != nil {
 		return nil, err
 	}
 
-	return connections.IdentityCon(actors, edger, conMaker, input)
+	return connections.Paginate(actors, input)
 }
 
-func (bugResolver) Participants(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.IdentityConnection, error) {
-	input := models.ConnectionInput{
+func (bugResolver) Participants(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*connections.Result[models.IdentityWrapper], error) {
+	input := connections.Input{
 		Before: before,
 		After:  after,
 		First:  first,
 		Last:   last,
 	}
 
-	edger := func(participant models.IdentityWrapper, offset int) connections.Edge {
-		return models.IdentityEdge{
-			Node:   participant,
-			Cursor: connections.OffsetToCursor(offset),
-		}
-	}
-
-	conMaker := func(edges []*models.IdentityEdge, nodes []models.IdentityWrapper, info *models.PageInfo, totalCount int) (*models.IdentityConnection, error) {
-		return &models.IdentityConnection{
-			Edges:      edges,
-			Nodes:      nodes,
-			PageInfo:   info,
-			TotalCount: totalCount,
-		}, nil
-	}
-
 	participants, err := obj.Participants()
 	if err != nil {
 		return nil, err
 	}
 
-	return connections.IdentityCon(participants, edger, conMaker, input)
+	return connections.Paginate(participants, input)
 }