@@ -9188,6 +9188,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
9188
9188
closed: Scalars['Boolean']['output'];
9189
9189
/** Identifies the date and time when the object was closed. */
9190
9190
closedAt?: Maybe<Scalars['DateTime']['output']>;
9191
+ /** List of open pull requests referenced from this issue */
9192
+ closedByPullRequestsReferences?: Maybe<PullRequestConnection>;
9191
9193
/** A list of comments associated with the Issue. */
9192
9194
comments: IssueCommentConnection;
9193
9195
/** Identifies the date and time when the object was created. */
@@ -9303,6 +9305,18 @@ export type IssueAssigneesArgs = {
9303
9305
};
9304
9306
9305
9307
9308
+ /** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
9309
+ export type IssueClosedByPullRequestsReferencesArgs = {
9310
+ after?: InputMaybe<Scalars['String']['input']>;
9311
+ before?: InputMaybe<Scalars['String']['input']>;
9312
+ first?: InputMaybe<Scalars['Int']['input']>;
9313
+ includeClosedPrs?: InputMaybe<Scalars['Boolean']['input']>;
9314
+ last?: InputMaybe<Scalars['Int']['input']>;
9315
+ orderByState?: InputMaybe<Scalars['Boolean']['input']>;
9316
+ userLinkedOnly?: InputMaybe<Scalars['Boolean']['input']>;
9317
+ };
9318
+
9319
+
9306
9320
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
9307
9321
export type IssueCommentsArgs = {
9308
9322
after?: InputMaybe<Scalars['String']['input']>;
0 commit comments