@@ -43,10 +43,10 @@ type Documents = {
"\n query CodePageReadme($repo: String, $ref: String!, $path: String!) {\n repository(ref: $repo) {\n blob(ref: $ref, path: $path) {\n text\n }\n }\n }\n": typeof types.CodePageReadmeDocument,
"\n query AllIdentities($ref: String) {\n repository(ref: $ref) {\n allIdentities(first: 1000) {\n nodes {\n id\n humanId\n name\n email\n login\n displayName\n avatarUrl\n }\n }\n }\n }\n": typeof types.AllIdentitiesDocument,
"\n query ValidLabels($ref: String) {\n repository(ref: $ref) {\n validLabels {\n nodes {\n name\n color {\n R\n G\n B\n }\n ...LabelFields\n }\n }\n }\n }\n": typeof types.ValidLabelsDocument,
- "\n query BugDetail($ref: String, $prefix: String!) {\n repository(ref: $ref) {\n bug(prefix: $prefix) {\n ...BugSummary\n lastEdit\n participants(first: 20) {\n nodes {\n ...IdentitySummary\n }\n }\n timeline(first: 250) {\n ...TimelineItems\n }\n }\n }\n }\n": typeof types.BugDetailDocument,
- "\n query BugList(\n $ref: String\n $openQuery: String!\n $closedQuery: String!\n $listQuery: String!\n $first: Int\n $after: String\n ) {\n repository(ref: $ref) {\n openCount: allBugs(query: $openQuery, first: 1) {\n totalCount\n }\n closedCount: allBugs(query: $closedQuery, first: 1) {\n totalCount\n }\n bugs: allBugs(query: $listQuery, first: $first, after: $after) {\n totalCount\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...BugSummary\n }\n }\n }\n }\n": typeof types.BugListDocument,
+ "\n query BugDetail($ref: String, $prefix: String!) {\n repository(ref: $ref) {\n bug(prefix: $prefix) {\n ...BugSummary\n humanId\n title\n status\n createdAt\n labels { name ...LabelFields }\n author { humanId displayName }\n lastEdit\n participants(first: 20) {\n nodes {\n ...IdentitySummary\n id\n humanId\n displayName\n avatarUrl\n }\n }\n timeline(first: 250) {\n ...TimelineItems\n }\n }\n }\n }\n": typeof types.BugDetailDocument,
+ "\n query BugList(\n $ref: String\n $openQuery: String!\n $closedQuery: String!\n $listQuery: String!\n $first: Int\n $after: String\n ) {\n repository(ref: $ref) {\n openCount: allBugs(query: $openQuery, first: 1) {\n totalCount\n }\n closedCount: allBugs(query: $closedQuery, first: 1) {\n totalCount\n }\n bugs: allBugs(query: $listQuery, first: $first, after: $after) {\n totalCount\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...BugSummary\n id\n humanId\n status\n title\n createdAt\n labels { name ...LabelFields }\n author { humanId displayName ...IdentitySummary }\n comments { totalCount }\n }\n }\n }\n }\n": typeof types.BugListDocument,
"\n mutation BugCreate($input: BugCreateInput!) {\n bugCreate(input: $input) {\n bug {\n id\n humanId\n }\n }\n }\n": typeof types.BugCreateDocument,
- "\n query UserProfile(\n $ref: String\n $prefix: String!\n $openQuery: String!\n $closedQuery: String!\n $listQuery: String!\n $after: String\n ) {\n repository(ref: $ref) {\n identity(prefix: $prefix) {\n id\n humanId\n name\n email\n login\n displayName\n avatarUrl\n isProtected\n }\n openCount: allBugs(query: $openQuery, first: 1) {\n totalCount\n }\n closedCount: allBugs(query: $closedQuery, first: 1) {\n totalCount\n }\n bugs: allBugs(query: $listQuery, first: 25, after: $after) {\n totalCount\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...BugSummary\n }\n }\n }\n }\n": typeof types.UserProfileDocument,
@@ -1381,8 +1381,11 @@ export type BugDetailQueryVariables = Exact<{
export type BugDetailQuery = { repository: { __typename: 'Repository', bug: (
- { __typename: 'Bug', lastEdit: string, participants: { __typename: 'IdentityConnection', nodes: Array<(
- { __typename: 'Identity' }
+ { __typename: 'Bug', humanId: string, title: string, status: Status, createdAt: string, lastEdit: string, labels: Array<(
+ { __typename: 'Label', name: string }
+ & { ' $fragmentRefs'?: { 'LabelFieldsFragment': LabelFieldsFragment } }
+ )>, author: { __typename: 'Identity', humanId: string, displayName: string }, participants: { __typename: 'IdentityConnection', nodes: Array<(
+ { __typename: 'Identity', id: string, humanId: string, displayName: string, avatarUrl: string | null }
& { ' $fragmentRefs'?: { 'IdentitySummaryFragment': IdentitySummaryFragment } }
)> }, timeline: (
{ __typename: 'BugTimelineItemConnection' }
@@ -1402,7 +1405,13 @@ export type BugListQueryVariables = Exact<{
export type BugListQuery = { repository: { __typename: 'Repository', openCount: { __typename: 'BugConnection', totalCount: number }, closedCount: { __typename: 'BugConnection', totalCount: number }, bugs: { __typename: 'BugConnection', totalCount: number, pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, endCursor: string }, nodes: Array<(
- { __typename: 'Bug' }
+ { __typename: 'Bug', id: string, humanId: string, status: Status, title: string, createdAt: string, labels: Array<(
+ { __typename: 'Label', name: string }
+ & { ' $fragmentRefs'?: { 'LabelFieldsFragment': LabelFieldsFragment } }
+ )>, author: (
+ { __typename: 'Identity', humanId: string, displayName: string }
+ & { ' $fragmentRefs'?: { 'IdentitySummaryFragment': IdentitySummaryFragment } }
+ ), comments: { __typename: 'BugCommentConnection', totalCount: number } }
& { ' $fragmentRefs'?: { 'BugSummaryFragment': BugSummaryFragment } }
)> } } | null };
@@ -1424,7 +1433,13 @@ export type UserProfileQueryVariables = Exact<{
export type UserProfileQuery = { repository: { __typename: 'Repository', identity: { __typename: 'Identity', id: string, humanId: string, name: string | null, email: string | null, login: string | null, displayName: string, avatarUrl: string | null, isProtected: boolean } | null, openCount: { __typename: 'BugConnection', totalCount: number }, closedCount: { __typename: 'BugConnection', totalCount: number }, bugs: { __typename: 'BugConnection', totalCount: number, pageInfo: { __typename: 'PageInfo', hasNextPage: boolean, endCursor: string }, nodes: Array<(
- { __typename: 'Bug' }
+ { __typename: 'Bug', id: string, humanId: string, status: Status, title: string, createdAt: string, labels: Array<(
+ { __typename: 'Label', name: string }
+ & { ' $fragmentRefs'?: { 'LabelFieldsFragment': LabelFieldsFragment } }
+ )>, author: (
+ { __typename: 'Identity', humanId: string }
+ & { ' $fragmentRefs'?: { 'IdentitySummaryFragment': IdentitySummaryFragment } }
+ ), comments: { __typename: 'BugCommentConnection', totalCount: number } }
& { ' $fragmentRefs'?: { 'BugSummaryFragment': BugSummaryFragment } }
)> } } | null };
@@ -1470,9 +1485,9 @@ export const CodePageLastCommitsDocument = {"kind":"Document","definitions":[{"k