@@ -35912,6 +35912,8 @@ export type AuthorFieldsFragment =
3591235912 | AuthorFields_User_Fragment
3591335913;
3591435914
35915+ export type MilestoneFieldsFragment = { __typename?: 'Milestone', state: MilestoneState, title: string };
35916+
3591535917export type FetchDiscussionByNumberQueryVariables = Exact<{
3591635918 owner: Scalars['String']['input'];
3591735919 name: Scalars['String']['input'];
@@ -35951,6 +35953,20 @@ export type CommentFieldsFragment = { __typename?: 'DiscussionComment', database
3595135953 | { __typename?: 'User', login: string, html_url: any, avatar_url: any, type: 'User' }
3595235954 | null };
3595335955
35956+ export type DiscussionCommentFieldsFragment = { __typename?: 'DiscussionComment', databaseId?: number | null, createdAt: any, url: any, replies: { __typename?: 'DiscussionCommentConnection', totalCount: number, nodes?: Array<{ __typename?: 'DiscussionComment', databaseId?: number | null, createdAt: any, url: any, author?:
35957+ | { __typename?: 'Bot', login: string, html_url: any, avatar_url: any, type: 'Bot' }
35958+ | { __typename?: 'EnterpriseUserAccount', login: string, html_url: any, avatar_url: any, type: 'EnterpriseUserAccount' }
35959+ | { __typename?: 'Mannequin', login: string, html_url: any, avatar_url: any, type: 'Mannequin' }
35960+ | { __typename?: 'Organization', login: string, html_url: any, avatar_url: any, type: 'Organization' }
35961+ | { __typename?: 'User', login: string, html_url: any, avatar_url: any, type: 'User' }
35962+ | null } | null> | null }, author?:
35963+ | { __typename?: 'Bot', login: string, html_url: any, avatar_url: any, type: 'Bot' }
35964+ | { __typename?: 'EnterpriseUserAccount', login: string, html_url: any, avatar_url: any, type: 'EnterpriseUserAccount' }
35965+ | { __typename?: 'Mannequin', login: string, html_url: any, avatar_url: any, type: 'Mannequin' }
35966+ | { __typename?: 'Organization', login: string, html_url: any, avatar_url: any, type: 'Organization' }
35967+ | { __typename?: 'User', login: string, html_url: any, avatar_url: any, type: 'User' }
35968+ | null };
35969+
3595435970export type FetchIssueByNumberQueryVariables = Exact<{
3595535971 owner: Scalars['String']['input'];
3595635972 name: Scalars['String']['input'];
@@ -35974,8 +35990,6 @@ export type FetchIssueByNumberQuery = { __typename?: 'Query', repository?: { __t
3597435990 | { __typename?: 'User', login: string, html_url: any, avatar_url: any, type: 'User' }
3597535991 | null } | null> | null }, labels?: { __typename?: 'LabelConnection', nodes?: Array<{ __typename?: 'Label', name: string } | null> | null } | null } | null } | null };
3597635992
35977- export type MilestoneFieldsFragment = { __typename?: 'Milestone', state: MilestoneState, title: string };
35978-
3597935993export type FetchPullRequestByNumberQueryVariables = Exact<{
3598035994 owner: Scalars['String']['input'];
3598135995 name: Scalars['String']['input'];
@@ -36007,6 +36021,14 @@ export type FetchPullRequestByNumberQuery = { __typename?: 'Query', repository?:
3600736021 | { __typename?: 'User', login: string }
3600836022 | null } | null> | null } | null, labels?: { __typename?: 'LabelConnection', nodes?: Array<{ __typename?: 'Label', name: string } | null> | null } | null, closingIssuesReferences?: { __typename?: 'IssueConnection', nodes?: Array<{ __typename?: 'Issue', number: number } | null> | null } | null } | null } | null };
3600936023
36024+ export type PullRequestReviewFieldsFragment = { __typename?: 'PullRequestReview', state: PullRequestReviewState, author?:
36025+ | { __typename?: 'Bot', login: string }
36026+ | { __typename?: 'EnterpriseUserAccount', login: string }
36027+ | { __typename?: 'Mannequin', login: string }
36028+ | { __typename?: 'Organization', login: string }
36029+ | { __typename?: 'User', login: string }
36030+ | null };
36031+
3601036032export class TypedDocumentString<TResult, TVariables>
3601136033 extends String
3601236034 implements DocumentTypeDecoration<TResult, TVariables>
@@ -36025,6 +36047,12 @@ export class TypedDocumentString<TResult, TVariables>
3602536047 return this.value;
3602636048 }
3602736049}
36050+ export const MilestoneFieldsFragmentDoc = new TypedDocumentString(`
36051+ fragment MilestoneFields on Milestone {
36052+ state
36053+ title
36054+ }
36055+ `, {"fragmentName":"MilestoneFields"}) as unknown as TypedDocumentString<MilestoneFieldsFragment, unknown>;
3602836056export const AuthorFieldsFragmentDoc = new TypedDocumentString(`
3602936057 fragment AuthorFields on Actor {
3603036058 login
@@ -36048,12 +36076,38 @@ export const CommentFieldsFragmentDoc = new TypedDocumentString(`
3604836076 avatar_url: avatarUrl
3604936077 type: __typename
3605036078}`, {"fragmentName":"CommentFields"}) as unknown as TypedDocumentString<CommentFieldsFragment, unknown>;
36051- export const MilestoneFieldsFragmentDoc = new TypedDocumentString(`
36052- fragment MilestoneFields on Milestone {
36079+ export const DiscussionCommentFieldsFragmentDoc = new TypedDocumentString(`
36080+ fragment DiscussionCommentFields on DiscussionComment {
36081+ ...CommentFields
36082+ replies(last: $lastReplies) {
36083+ totalCount
36084+ nodes {
36085+ ...CommentFields
36086+ }
36087+ }
36088+ }
36089+ fragment AuthorFields on Actor {
36090+ login
36091+ html_url: url
36092+ avatar_url: avatarUrl
36093+ type: __typename
36094+ }
36095+ fragment CommentFields on DiscussionComment {
36096+ databaseId
36097+ createdAt
36098+ author {
36099+ ...AuthorFields
36100+ }
36101+ url
36102+ }`, {"fragmentName":"DiscussionCommentFields"}) as unknown as TypedDocumentString<DiscussionCommentFieldsFragment, unknown>;
36103+ export const PullRequestReviewFieldsFragmentDoc = new TypedDocumentString(`
36104+ fragment PullRequestReviewFields on PullRequestReview {
3605336105 state
36054- title
36106+ author {
36107+ login
36108+ }
3605536109}
36056- `, {"fragmentName":"MilestoneFields "}) as unknown as TypedDocumentString<MilestoneFieldsFragment , unknown>;
36110+ `, {"fragmentName":"PullRequestReviewFields "}) as unknown as TypedDocumentString<PullRequestReviewFieldsFragment , unknown>;
3605736111export const FetchDiscussionByNumberDocument = new TypedDocumentString(`
3605836112 query FetchDiscussionByNumber($owner: String!, $name: String!, $number: Int!, $lastComments: Int, $lastReplies: Int, $firstLabels: Int, $includeIsAnswered: Boolean!) {
3605936113 repository(owner: $owner, name: $name) {
@@ -36070,13 +36124,7 @@ export const FetchDiscussionByNumberDocument = new TypedDocumentString(`
3607036124 comments(last: $lastComments) {
3607136125 totalCount
3607236126 nodes {
36073- ...CommentFields
36074- replies(last: $lastReplies) {
36075- totalCount
36076- nodes {
36077- ...CommentFields
36078- }
36079- }
36127+ ...DiscussionCommentFields
3608036128 }
3608136129 }
3608236130 labels(first: $firstLabels) {
@@ -36100,6 +36148,15 @@ fragment CommentFields on DiscussionComment {
3610036148 ...AuthorFields
3610136149 }
3610236150 url
36151+ }
36152+ fragment DiscussionCommentFields on DiscussionComment {
36153+ ...CommentFields
36154+ replies(last: $lastReplies) {
36155+ totalCount
36156+ nodes {
36157+ ...CommentFields
36158+ }
36159+ }
3610336160}`) as unknown as TypedDocumentString<FetchDiscussionByNumberQuery, FetchDiscussionByNumberQueryVariables>;
3610436161export const FetchIssueByNumberDocument = new TypedDocumentString(`
3610536162 query FetchIssueByNumber($owner: String!, $name: String!, $number: Int!, $lastComments: Int, $firstLabels: Int) {
@@ -36174,10 +36231,7 @@ export const FetchPullRequestByNumberDocument = new TypedDocumentString(`
3617436231 reviews(last: $lastReviews) {
3617536232 totalCount
3617636233 nodes {
36177- state
36178- author {
36179- login
36180- }
36234+ ...PullRequestReviewFields
3618136235 }
3618236236 }
3618336237 labels(first: $firstLabels) {
@@ -36202,4 +36256,10 @@ export const FetchPullRequestByNumberDocument = new TypedDocumentString(`
3620236256fragment MilestoneFields on Milestone {
3620336257 state
3620436258 title
36259+ }
36260+ fragment PullRequestReviewFields on PullRequestReview {
36261+ state
36262+ author {
36263+ login
36264+ }
3620536265}`) as unknown as TypedDocumentString<FetchPullRequestByNumberQuery, FetchPullRequestByNumberQueryVariables>;
0 commit comments