Skip to content

Commit 597478f

Browse files
authored
feat: Issue[closedByPullRequestsReferences] , viewerCanLabel, MergeQueue[GroupingStrategy, MergeMethod, Parameters], AccessUserNamespaceRepository, UserNamespaceRepositoryConnection, UserNamespaceRepository, UserNamespaceRepositoryEdge, UserViewType, AnnouncementBanner, CvssSeverities; Mutations: MarkNotificationAsDone, unsubscribeFromNotifications (#971)
1 parent a6de3c1 commit 597478f

File tree

3 files changed

+1602
-248
lines changed

3 files changed

+1602
-248
lines changed

schema.d.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9188,6 +9188,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
91889188
closed: Scalars['Boolean']['output'];
91899189
/** Identifies the date and time when the object was closed. */
91909190
closedAt?: Maybe<Scalars['DateTime']['output']>;
9191+
/** List of open pull requests referenced from this issue */
9192+
closedByPullRequestsReferences?: Maybe<PullRequestConnection>;
91919193
/** A list of comments associated with the Issue. */
91929194
comments: IssueCommentConnection;
91939195
/** Identifies the date and time when the object was created. */
@@ -9303,6 +9305,18 @@ export type IssueAssigneesArgs = {
93039305
};
93049306

93059307

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+
93069320
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
93079321
export type IssueCommentsArgs = {
93089322
after?: InputMaybe<Scalars['String']['input']>;

0 commit comments

Comments
 (0)