This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
112 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
// @generated | ||
// This file was automatically generated and should not be edited. | ||
|
||
// ==================================================== | ||
// GraphQL query operation: GetAllOpenPRs | ||
// ==================================================== | ||
|
||
export interface GetAllOpenPRs_repository_pullRequests_nodes { | ||
__typename: "PullRequest"; | ||
/** | ||
* Identifies the pull request number. | ||
*/ | ||
number: number; | ||
} | ||
|
||
export interface GetAllOpenPRs_repository_pullRequests_pageInfo { | ||
__typename: "PageInfo"; | ||
/** | ||
* When paginating forwards, are there more items? | ||
*/ | ||
hasNextPage: boolean; | ||
/** | ||
* When paginating forwards, the cursor to continue. | ||
*/ | ||
endCursor: string | null; | ||
} | ||
|
||
export interface GetAllOpenPRs_repository_pullRequests { | ||
__typename: "PullRequestConnection"; | ||
/** | ||
* A list of nodes. | ||
*/ | ||
nodes: (GetAllOpenPRs_repository_pullRequests_nodes | null)[] | null; | ||
/** | ||
* Information to aid in pagination. | ||
*/ | ||
pageInfo: GetAllOpenPRs_repository_pullRequests_pageInfo; | ||
} | ||
|
||
export interface GetAllOpenPRs_repository { | ||
__typename: "Repository"; | ||
id: string; | ||
/** | ||
* A list of pull requests that have been opened in the repository. | ||
*/ | ||
pullRequests: GetAllOpenPRs_repository_pullRequests; | ||
} | ||
|
||
export interface GetAllOpenPRs { | ||
/** | ||
* Lookup a given repository by the owner and repository name. | ||
*/ | ||
repository: GetAllOpenPRs_repository | null; | ||
} | ||
|
||
export interface GetAllOpenPRsVariables { | ||
endCursor?: string | null; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters