Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Adds Issue[closedByPullRequestsReferences] , viewerCanLabel, MergeQueue[GroupingStrategy, MergeMethod, Parameters] #971

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
62470f5
WIP: schema.graphql changed - please review
Jul 15, 2024
d52a3d5
build: schema.json and schema.d.ts updated
Jul 15, 2024
c647065
WIP: schema.graphql changed - please review
Jul 23, 2024
abe7509
WIP: schema.graphql changed - please review
Jul 24, 2024
20d2daa
WIP: schema.graphql changed - please review
Aug 9, 2024
c109d1f
WIP: schema.graphql changed - please review
Aug 30, 2024
db2772d
WIP: schema.graphql changed - please review
Sep 10, 2024
698eddb
WIP: schema.graphql changed - please review
Sep 11, 2024
269a0e9
WIP: schema.graphql changed - please review
Sep 11, 2024
21c3bff
WIP: schema.graphql changed - please review
Sep 13, 2024
1a0e7af
WIP: schema.graphql changed - please review
Sep 17, 2024
587f61d
WIP: schema.graphql changed - please review
Sep 27, 2024
0f3c7e1
WIP: schema.graphql changed - please review
Sep 30, 2024
550354f
WIP: schema.graphql changed - please review
Oct 2, 2024
f07fc2d
WIP: schema.graphql changed - please review
Oct 2, 2024
fcfc433
WIP: schema.graphql changed - please review
Oct 4, 2024
0bce406
WIP: schema.graphql changed - please review
Oct 7, 2024
ebfe0fd
WIP: schema.graphql changed - please review
Oct 8, 2024
07f8307
WIP: schema.graphql changed - please review
Oct 8, 2024
2337d93
WIP: schema.graphql changed - please review
Oct 11, 2024
d637d4c
WIP: schema.graphql changed - please review
Oct 17, 2024
12d1136
WIP: schema.graphql changed - please review
Oct 18, 2024
819a3d5
WIP: schema.graphql changed - please review
Oct 31, 2024
63265ba
WIP: schema.graphql changed - please review
Nov 6, 2024
9c31f20
WIP: schema.graphql changed - please review
Nov 25, 2024
c907f94
WIP: schema.graphql changed - please review
Nov 26, 2024
0044461
WIP: schema.graphql changed - please review
Dec 4, 2024
30276df
WIP: schema.graphql changed - please review
Dec 9, 2024
a19557c
WIP: schema.graphql changed - please review
Dec 9, 2024
22a75db
WIP: schema.graphql changed - please review
Dec 14, 2024
df6eda4
WIP: schema.graphql changed - please review
Dec 17, 2024
95f572f
WIP: schema.graphql changed - please review
Dec 18, 2024
9835556
WIP: schema.graphql changed - please review
Dec 18, 2024
3c3ad0b
WIP: schema.graphql changed - please review
Dec 18, 2024
516b2c1
WIP: schema.graphql changed - please review
Dec 18, 2024
ef052de
WIP: schema.graphql changed - please review
Dec 18, 2024
b330e92
WIP: schema.graphql changed - please review
Dec 18, 2024
90bed93
WIP: schema.graphql changed - please review
Dec 18, 2024
90c1278
WIP: schema.graphql changed - please review
Dec 18, 2024
197159f
WIP: schema.graphql changed - please review
Dec 19, 2024
c60e893
WIP: schema.graphql changed - please review
Jan 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9188,6 +9188,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
closed: Scalars['Boolean']['output'];
/** Identifies the date and time when the object was closed. */
closedAt?: Maybe<Scalars['DateTime']['output']>;
/** List of open pull requests referenced from this issue */
closedByPullRequestsReferences?: Maybe<PullRequestConnection>;
/** A list of comments associated with the Issue. */
comments: IssueCommentConnection;
/** Identifies the date and time when the object was created. */
Expand Down Expand Up @@ -9303,6 +9305,18 @@ export type IssueAssigneesArgs = {
};


/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
export type IssueClosedByPullRequestsReferencesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
includeClosedPrs?: InputMaybe<Scalars['Boolean']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
orderByState?: InputMaybe<Scalars['Boolean']['input']>;
userLinkedOnly?: InputMaybe<Scalars['Boolean']['input']>;
};


/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
export type IssueCommentsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
Expand Down
Loading