@tomsd/github-repo-js 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/github/index.d.ts +25 -0
- package/dist/generated/github/runtime/batcher.d.ts +105 -0
- package/dist/generated/github/runtime/createClient.d.ts +17 -0
- package/dist/generated/github/runtime/error.d.ts +18 -0
- package/dist/generated/github/runtime/fetcher.d.ts +10 -0
- package/dist/generated/github/runtime/generateGraphqlOperation.d.ts +30 -0
- package/dist/generated/github/runtime/index.d.ts +11 -0
- package/dist/generated/github/runtime/linkTypeMap.d.ts +9 -0
- package/dist/generated/github/runtime/typeSelection.d.ts +28 -0
- package/dist/generated/github/runtime/types.d.ts +55 -0
- package/dist/generated/github/schema.d.ts +62099 -0
- package/dist/generated/github/types.d.ts +17719 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.iife.js +2 -1
- package/dist/index.mjs +2 -1
- package/dist/repl.mjs +2 -1
- package/package.json +15 -4
package/dist/repl.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import{start as e}from"repl";import{readFile as t}from"fs/promises";import*as n from"path";import r from"assert";async function loopPages(e,t){let n=t??10,r=[],i=1;for(;;){let{resultItems:t}=await e({per_page:n,page:i});if(r.push(t),t.length<n)break;i++}return r.flat()}var GitHubApiBase=class{token;constructor(e){this.token=e}get apiOrigin(){return`https://api.github.com`}get apiEndpoint(){return``}get requestHeaders(){return{accept:`application/vnd.github+json`,authorization:`Bearer ${this.token}`,"X-GitHub-Api-Version":`2022-11-28`}}get pageSizeForRequest(){return 10}async getPagedList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}},this.pageSizeForRequest)}async getList(e){let t=new URL(this.apiEndpoint);for(let[n,r]of Object.entries(e??{}))t.searchParams.append(n,`${r}`);return await fetch(t,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async get(){return await fetch(this.apiEndpoint,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async post(e){return await fetch(this.apiEndpoint,{method:`POST`,headers:this.requestHeaders,body:JSON.stringify(e)}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async patch(e){return await fetch(this.apiEndpoint,{method:`PATCH`,headers:this.requestHeaders,body:JSON.stringify(e)}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async delete(){let e=await fetch(this.apiEndpoint,{method:`DELETE`,headers:this.requestHeaders});if(!e.ok)throw Error(e.statusText,{cause:{response:e}})}},GitHubRepoApiBase=class extends GitHubApiBase{owner;repo;constructor(e,t,n){super(e),this.owner=t,this.repo=n}},GitHubIssueApiBase=class extends GitHubRepoApiBase{issueNumber;constructor(e,t,n,r){super(e,t,n),this.issueNumber=r}},GitHubPullApiBase=class extends GitHubRepoApiBase{pullNumber;constructor(e,t,n,r){super(e,t,n),this.pullNumber=r}};function readyGitHubMyIssues(e){return class GitHubMyIssues extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/issues`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubOrganizationRepositories(e){return class GitHubOrganizationRepositories extends GitHubApiBase{org;constructor(t){super(e),this.org=t}get apiEndpoint(){return`${this.apiOrigin}/orgs/${this.org}/repos`}}}function readyGitHubBlob(e){return class GitHubBlob extends GitHubRepoApiBase{fileSha;constructor(t,n,r){super(e,t,n),this.fileSha=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/blobs/${this.fileSha}`}}}function readyGitHubBlobs(e){return class GitHubBlobs extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/blobs`}}}function readyGitHubIssueComments(e){return class GitHubIssueComments extends GitHubIssueApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues/${this.issueNumber}/comments`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubIssue(e){let t=readyGitHubIssueComments(e);return class GitHubIssue extends GitHubIssueApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues/${this.issueNumber}`}async getComments(){return await new t(this.owner,this.repo,this.issueNumber).getList()}async postComment(...e){return await new t(this.owner,this.repo,this.issueNumber).post(...e)}}}function readyGitHubRepositoryArtifacts(e){return class GitHubRepositoryArtifacts extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/artifacts`}get pageSizeForRequest(){return 100}async getList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(async e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});let{artifacts:t}=await e.json();return t})}},this.pageSizeForRequest)}}}function readyGitHubRepositoryArtifact(e){return class GitHubRepositoryArtifact extends GitHubRepoApiBase{artifactId;constructor(t,n,r){super(e,t,n),this.artifactId=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/artifacts/${this.artifactId}`}async downloadBlob(){let e=`${this.apiEndpoint}/zip`,t=await fetch(e,{headers:this.requestHeaders,cache:`no-store`});if(!t.ok)throw Error(t.statusText,{cause:{response:t}});return await t.blob()}}}function readyGitHubRepositoryBranch(e){return class GitHubRepositoryBranch extends GitHubRepoApiBase{branch;constructor(t,n,r){super(e,t,n),this.branch=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/branches/${this.branch}`}}}function readyGitHubRepositoryBranches(e){return class GitHubRepositoryBranches extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/branches`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryCommits(e){return class GitHubRepositoryCommits extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/commits`}}}function readyGitHubRepositoryIssues(e){return class GitHubRepositoryIssues extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubReference(e){return class GitHubReference extends GitHubRepoApiBase{ref;constructor(t,n,r){super(e,t,n),this.ref=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/refs/${this.ref}`}}}function readyGitHubReferenceForGet(e){return class GitHubReferenceForGet extends GitHubRepoApiBase{ref;constructor(t,n,r){super(e,t,n),this.ref=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/ref/${this.ref}`}}}function readyGitHubPullCommits(e){return class GitHubPullCommits extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}/commits`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubPullReviewers(e){return class GitHubPullReviewers extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}/requested_reviewers`}}}function readyGitHubRepositoryPull(e){let t=readyGitHubPullCommits(e),n=readyGitHubPullReviewers(e);return class GitHubRepositoryPull extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}`}async getCommits(){return await new t(this.owner,this.repo,this.pullNumber).getList()}async getReviewers(){return await new n(this.owner,this.repo,this.pullNumber).get()}async postReviewers(...e){return await new n(this.owner,this.repo,this.pullNumber).post(...e)}}}function readyGitHubRepositoryPulls(e){return class GitHubRepositoryPulls extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryReferences(e){class GitHubRepositoryMatchingReferences extends GitHubRepoApiBase{refName;constructor(t,n,r){super(e,t,n),this.refName=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/matching-refs/${this.refName}`}}return class GitHubRepositoryReferences extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/refs`}async getMatchingList(e){return await new GitHubRepositoryMatchingReferences(this.owner,this.repo,e).getList()}}}function readyGitHubRepositoryReleases(e){return class GitHubRepositoryReleases extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/releases`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryLatestRelease(e){return class GitHubRepositoryLatestRelease extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/releases/latest`}}}function readyGitHubRepositoryRuns(e){return class GitHubRepositoryRuns extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/runs`}get pageSizeForRequest(){return 100}async getList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(async e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});let{workflow_runs:t}=await e.json();return t})}},this.pageSizeForRequest)}}}function readyGitHubTree(e){return class GitHubTree extends GitHubRepoApiBase{treeSha;constructor(t,n,r){super(e,t,n),this.treeSha=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/trees/${this.treeSha}?recursive=true`}}}function readyGitHubRepositoryTrees(e){return class GitHubRepositoryTrees extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/trees`}}}function readyGitHubRepository(e){let t=readyGitHubBlob(e),n=readyGitHubBlobs(e),r=readyGitHubIssue(e),i=readyGitHubReference(e),a=readyGitHubReferenceForGet(e),o=readyGitHubRepositoryArtifacts(e),s=readyGitHubRepositoryArtifact(e),c=readyGitHubRepositoryIssues(e),l=readyGitHubRepositoryBranch(e),u=readyGitHubRepositoryBranches(e),d=readyGitHubRepositoryCommits(e),f=readyGitHubRepositoryPull(e),p=readyGitHubRepositoryPulls(e),m=readyGitHubRepositoryReferences(e),h=readyGitHubRepositoryReleases(e),g=readyGitHubRepositoryLatestRelease(e),_=readyGitHubRepositoryRuns(e),v=readyGitHubRepositoryTrees(e),y=readyGitHubTree(e);return class GitHubRepository extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}`}async getArtifacts(e){return await new o(this.owner,this.repo).getList(e)}async getArtifact(e){return await new s(this.owner,this.repo,e).get()}async getArtifactZipBlob(e){return await new s(this.owner,this.repo,e).downloadBlob()}async getBranches(){return await new u(this.owner,this.repo).getList()}async getBranch(e){return await new l(this.owner,this.repo,e).get()}async getReferences(e){return await new m(this.owner,this.repo).getMatchingList(e)}async getBranchReferences(){return await new m(this.owner,this.repo).getMatchingList(`heads/`)}async getTagReferences(){return await new m(this.owner,this.repo).getMatchingList(`tags/`)}async postReference(...e){return await new m(this.owner,this.repo).post(...e)}async getReference(e){return await new a(this.owner,this.repo,e).get()}async getBranchReference(e){return await new a(this.owner,this.repo,`heads/${e}`).get()}async getTagReference(e){return await new a(this.owner,this.repo,`tags/${e}`).get()}async patchReference(e,...t){return await new i(this.owner,this.repo,e).patch(...t)}async deleteReference(e){return await new i(this.owner,this.repo,e).delete()}async getBlob(e){return await new t(this.owner,this.repo,e).get()}async postBlob(...e){return await new n(this.owner,this.repo).post(...e)}async getTree(e){return await new y(this.owner,this.repo,e).get()}async postTree(...e){return await new v(this.owner,this.repo).post(...e)}async getIssues(e){return await new c(this.owner,this.repo).getList(e)}async postIssue(...e){return await new c(this.owner,this.repo).post(...e)}issue(e){return new r(this.owner,this.repo,e)}async getIssue(e){return await new r(this.owner,this.repo,e).get()}async patchIssue(e,...t){return await new r(this.owner,this.repo,e).patch(...t)}async getPulls(e){return await new p(this.owner,this.repo).getList(e)}async postPull(...e){return await new p(this.owner,this.repo).post(...e)}pull(e){return new f(this.owner,this.repo,e)}async getPull(e){return await new f(this.owner,this.repo,e).get()}async patchPull(e,...t){return await new f(this.owner,this.repo,e).patch(...t)}async getReleases(e){return await new h(this.owner,this.repo).getList(e)}async postRelease(...e){return await new h(this.owner,this.repo).post(...e)}async getLatestRelease(){return await new g(this.owner,this.repo).get()}async postCommit(...e){return await new d(this.owner,this.repo).post(...e)}async getRuns(e){return await new _(this.owner,this.repo).getList(e)}}}function readyGitHubUser(e){return class GitHubUser extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user`}}}function readyGitHubUserOrganizations(e){return class GitHubUserOrganizations extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user/orgs`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubUserRepositories(e){return class GitHubUserRepositories extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user/repos`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubGraphQL(e){return class GitHubGraphQL{get apiEndpoint(){return`https://api.github.com/graphql`}async doQuery(t){let n=await fetch(this.apiEndpoint,{method:`POST`,headers:{"Content-Type":`application/json`,Authorization:`Bearer ${e}`},body:JSON.stringify(t)});if(!n.ok)throw Error(`GitHub GraphQL API request failed with status ${n.status}`);return await n.json()}}}function readyGitHubClasses(e){return{GitHubMyIssues:readyGitHubMyIssues(e),GitHubOrganizationRepositories:readyGitHubOrganizationRepositories(e),GitHubRepository:readyGitHubRepository(e),GitHubRepositoryIssues:readyGitHubRepositoryIssues(e),GitHubUser:readyGitHubUser(e),GitHubUserOrganizations:readyGitHubUserOrganizations(e),GitHubUserRepositories:readyGitHubUserRepositories(e),GitHubGraphQL:readyGitHubGraphQL(e)}}var GitHubFacade=class{token;githubClasses;constructor(e){this.token=e,this.githubClasses=readyGitHubClasses(e)}async getMe(){return await new this.githubClasses.GitHubUser().get()}async getMyOrganizations(){let{GitHubUserOrganizations:e,GitHubOrganizationRepositories:t}=this.githubClasses;return(await new e().getList()).map(e=>({...e,async getRepositories(){return await new t(e.login).getList()}}))}async getMyRepositories(){let{GitHubUserRepositories:e,GitHubRepositoryIssues:t}=this.githubClasses;return(await new e().getList()).map(e=>({...e,async getIssues(){return await new t(e.owner.login,e.name).getList()},async postIssue(...n){return await new t(e.owner.login,e.name).post(...n)}}))}async getMyIssues(){let{GitHubMyIssues:e}=this.githubClasses;return await new e().getList()}repo(e,t){let{GitHubRepository:n}=this.githubClasses;return new n(e,t)}async queryGraphQL(e,t){return await new this.githubClasses.GitHubGraphQL().doQuery({query:e,variables:t})}};async function executeScriptFile(e,n){await Function(`{github}`,`return new Promise(async (resolve) => {
|
|
1
|
+
import{start as e}from"repl";import{readFile as t}from"fs/promises";import*as n from"path";import r from"assert";var i=Object.defineProperty,__name=(e,t)=>i(e,`name`,{value:t,configurable:!0});async function loopPages(e,t){let n=t??10,r=[],i=1;for(;;){let{resultItems:t}=await e({per_page:n,page:i});if(r.push(t),t.length<n)break;i++}return r.flat()}var GitHubApiBase=class{token;constructor(e){this.token=e}get apiOrigin(){return`https://api.github.com`}get apiEndpoint(){return``}get requestHeaders(){return{accept:`application/vnd.github+json`,authorization:`Bearer ${this.token}`,"X-GitHub-Api-Version":`2022-11-28`}}get pageSizeForRequest(){return 10}async getPagedList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}},this.pageSizeForRequest)}async getList(e){let t=new URL(this.apiEndpoint);for(let[n,r]of Object.entries(e??{}))t.searchParams.append(n,`${r}`);return await fetch(t,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async get(){return await fetch(this.apiEndpoint,{headers:this.requestHeaders,cache:`no-store`}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async post(e){return await fetch(this.apiEndpoint,{method:`POST`,headers:this.requestHeaders,body:JSON.stringify(e)}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async patch(e){return await fetch(this.apiEndpoint,{method:`PATCH`,headers:this.requestHeaders,body:JSON.stringify(e)}).then(e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});return e.json()})}async delete(){let e=await fetch(this.apiEndpoint,{method:`DELETE`,headers:this.requestHeaders});if(!e.ok)throw Error(e.statusText,{cause:{response:e}})}},GitHubRepoApiBase=class extends GitHubApiBase{owner;repo;constructor(e,t,n){super(e),this.owner=t,this.repo=n}},GitHubIssueApiBase=class extends GitHubRepoApiBase{issueNumber;constructor(e,t,n,r){super(e,t,n),this.issueNumber=r}},GitHubPullApiBase=class extends GitHubRepoApiBase{pullNumber;constructor(e,t,n,r){super(e,t,n),this.pullNumber=r}};function readyGitHubMyIssues(e){return class GitHubMyIssues extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/issues`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubOrganizationRepositories(e){return class GitHubOrganizationRepositories extends GitHubApiBase{org;constructor(t){super(e),this.org=t}get apiEndpoint(){return`${this.apiOrigin}/orgs/${this.org}/repos`}}}function readyGitHubBlob(e){return class GitHubBlob extends GitHubRepoApiBase{fileSha;constructor(t,n,r){super(e,t,n),this.fileSha=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/blobs/${this.fileSha}`}}}function readyGitHubBlobs(e){return class GitHubBlobs extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/blobs`}}}function readyGitHubIssueComments(e){return class GitHubIssueComments extends GitHubIssueApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues/${this.issueNumber}/comments`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubIssue(e){let t=readyGitHubIssueComments(e);return class GitHubIssue extends GitHubIssueApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues/${this.issueNumber}`}async getComments(){return await new t(this.owner,this.repo,this.issueNumber).getList()}async postComment(...e){return await new t(this.owner,this.repo,this.issueNumber).post(...e)}}}function readyGitHubRepositoryArtifacts(e){return class GitHubRepositoryArtifacts extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/artifacts`}get pageSizeForRequest(){return 100}async getList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(async e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});let{artifacts:t}=await e.json();return t})}},this.pageSizeForRequest)}}}function readyGitHubRepositoryArtifact(e){return class GitHubRepositoryArtifact extends GitHubRepoApiBase{artifactId;constructor(t,n,r){super(e,t,n),this.artifactId=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/artifacts/${this.artifactId}`}async downloadBlob(){let e=`${this.apiEndpoint}/zip`,t=await fetch(e,{headers:this.requestHeaders,cache:`no-store`});if(!t.ok)throw Error(t.statusText,{cause:{response:t}});return await t.blob()}}}function readyGitHubRepositoryBranch(e){return class GitHubRepositoryBranch extends GitHubRepoApiBase{branch;constructor(t,n,r){super(e,t,n),this.branch=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/branches/${this.branch}`}}}function readyGitHubRepositoryBranches(e){return class GitHubRepositoryBranches extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/branches`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryCommits(e){return class GitHubRepositoryCommits extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/commits`}}}function readyGitHubRepositoryIssues(e){return class GitHubRepositoryIssues extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/issues`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubReference(e){return class GitHubReference extends GitHubRepoApiBase{ref;constructor(t,n,r){super(e,t,n),this.ref=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/refs/${this.ref}`}}}function readyGitHubReferenceForGet(e){return class GitHubReferenceForGet extends GitHubRepoApiBase{ref;constructor(t,n,r){super(e,t,n),this.ref=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/ref/${this.ref}`}}}function readyGitHubPullCommits(e){return class GitHubPullCommits extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}/commits`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubPullReviewers(e){return class GitHubPullReviewers extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}/requested_reviewers`}}}function readyGitHubRepositoryPull(e){let t=readyGitHubPullCommits(e),n=readyGitHubPullReviewers(e);return class GitHubRepositoryPull extends GitHubPullApiBase{constructor(t,n,r){super(e,t,n,r)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls/${this.pullNumber}`}async getCommits(){return await new t(this.owner,this.repo,this.pullNumber).getList()}async getReviewers(){return await new n(this.owner,this.repo,this.pullNumber).get()}async postReviewers(...e){return await new n(this.owner,this.repo,this.pullNumber).post(...e)}}}function readyGitHubRepositoryPulls(e){return class GitHubRepositoryPulls extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/pulls`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryReferences(e){class GitHubRepositoryMatchingReferences extends GitHubRepoApiBase{refName;constructor(t,n,r){super(e,t,n),this.refName=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/matching-refs/${this.refName}`}}return class GitHubRepositoryReferences extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/refs`}async getMatchingList(e){return await new GitHubRepositoryMatchingReferences(this.owner,this.repo,e).getList()}}}function readyGitHubRepositoryReleases(e){return class GitHubRepositoryReleases extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/releases`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubRepositoryLatestRelease(e){return class GitHubRepositoryLatestRelease extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/releases/latest`}}}function readyGitHubRepositoryRuns(e){return class GitHubRepositoryRuns extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/actions/runs`}get pageSizeForRequest(){return 100}async getList(e){return await loopPages(async({per_page:t,page:n})=>{let r=new URL(this.apiEndpoint),i={...e??{},per_page:t,page:n};for(let[e,t]of Object.entries(i))r.searchParams.append(e,`${t}`);return{resultItems:await fetch(r,{headers:this.requestHeaders,cache:`no-store`}).then(async e=>{if(!e.ok)throw Error(e.statusText,{cause:{response:e}});let{workflow_runs:t}=await e.json();return t})}},this.pageSizeForRequest)}}}function readyGitHubTree(e){return class GitHubTree extends GitHubRepoApiBase{treeSha;constructor(t,n,r){super(e,t,n),this.treeSha=r}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/trees/${this.treeSha}?recursive=true`}}}function readyGitHubRepositoryTrees(e){return class GitHubRepositoryTrees extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}/git/trees`}}}function readyGitHubRepository(e){let t=readyGitHubBlob(e),n=readyGitHubBlobs(e),r=readyGitHubIssue(e),i=readyGitHubReference(e),a=readyGitHubReferenceForGet(e),o=readyGitHubRepositoryArtifacts(e),s=readyGitHubRepositoryArtifact(e),c=readyGitHubRepositoryIssues(e),l=readyGitHubRepositoryBranch(e),u=readyGitHubRepositoryBranches(e),d=readyGitHubRepositoryCommits(e),f=readyGitHubRepositoryPull(e),p=readyGitHubRepositoryPulls(e),m=readyGitHubRepositoryReferences(e),h=readyGitHubRepositoryReleases(e),g=readyGitHubRepositoryLatestRelease(e),_=readyGitHubRepositoryRuns(e),v=readyGitHubRepositoryTrees(e),y=readyGitHubTree(e);return class GitHubRepository extends GitHubRepoApiBase{constructor(t,n){super(e,t,n)}get apiEndpoint(){return`${this.apiOrigin}/repos/${this.owner}/${this.repo}`}async getArtifacts(e){return await new o(this.owner,this.repo).getList(e)}async getArtifact(e){return await new s(this.owner,this.repo,e).get()}async getArtifactZipBlob(e){return await new s(this.owner,this.repo,e).downloadBlob()}async getBranches(){return await new u(this.owner,this.repo).getList()}async getBranch(e){return await new l(this.owner,this.repo,e).get()}async getReferences(e){return await new m(this.owner,this.repo).getMatchingList(e)}async getBranchReferences(){return await new m(this.owner,this.repo).getMatchingList(`heads/`)}async getTagReferences(){return await new m(this.owner,this.repo).getMatchingList(`tags/`)}async postReference(...e){return await new m(this.owner,this.repo).post(...e)}async getReference(e){return await new a(this.owner,this.repo,e).get()}async getBranchReference(e){return await new a(this.owner,this.repo,`heads/${e}`).get()}async getTagReference(e){return await new a(this.owner,this.repo,`tags/${e}`).get()}async patchReference(e,...t){return await new i(this.owner,this.repo,e).patch(...t)}async deleteReference(e){return await new i(this.owner,this.repo,e).delete()}async getBlob(e){return await new t(this.owner,this.repo,e).get()}async postBlob(...e){return await new n(this.owner,this.repo).post(...e)}async getTree(e){return await new y(this.owner,this.repo,e).get()}async postTree(...e){return await new v(this.owner,this.repo).post(...e)}async getIssues(e){return await new c(this.owner,this.repo).getList(e)}async postIssue(...e){return await new c(this.owner,this.repo).post(...e)}issue(e){return new r(this.owner,this.repo,e)}async getIssue(e){return await new r(this.owner,this.repo,e).get()}async patchIssue(e,...t){return await new r(this.owner,this.repo,e).patch(...t)}async getPulls(e){return await new p(this.owner,this.repo).getList(e)}async postPull(...e){return await new p(this.owner,this.repo).post(...e)}pull(e){return new f(this.owner,this.repo,e)}async getPull(e){return await new f(this.owner,this.repo,e).get()}async patchPull(e,...t){return await new f(this.owner,this.repo,e).patch(...t)}async getReleases(e){return await new h(this.owner,this.repo).getList(e)}async postRelease(...e){return await new h(this.owner,this.repo).post(...e)}async getLatestRelease(){return await new g(this.owner,this.repo).get()}async postCommit(...e){return await new d(this.owner,this.repo).post(...e)}async getRuns(e){return await new _(this.owner,this.repo).getList(e)}}}function readyGitHubUser(e){return class GitHubUser extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user`}}}function readyGitHubUserOrganizations(e){return class GitHubUserOrganizations extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user/orgs`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubUserRepositories(e){return class GitHubUserRepositories extends GitHubApiBase{constructor(){super(e)}get apiEndpoint(){return`${this.apiOrigin}/user/repos`}get pageSizeForRequest(){return 100}async getList(e){return await this.getPagedList(e)}}}function readyGitHubGraphQL(e){return class GitHubGraphQL{get apiEndpoint(){return`https://api.github.com/graphql`}async doQuery(t){let n=await fetch(this.apiEndpoint,{method:`POST`,headers:{"Content-Type":`application/json`,Authorization:`Bearer ${e}`},body:JSON.stringify(t)});if(!n.ok)throw Error(`GitHub GraphQL API request failed with status ${n.status}`);return await n.json()}}}function readyGitHubClasses(e){return{GitHubMyIssues:readyGitHubMyIssues(e),GitHubOrganizationRepositories:readyGitHubOrganizationRepositories(e),GitHubRepository:readyGitHubRepository(e),GitHubRepositoryIssues:readyGitHubRepositoryIssues(e),GitHubUser:readyGitHubUser(e),GitHubUserOrganizations:readyGitHubUserOrganizations(e),GitHubUserRepositories:readyGitHubUserRepositories(e),GitHubGraphQL:readyGitHubGraphQL(e)}}var GenqlError=class extends Error{errors=[];data;constructor(e,t){let n=Array.isArray(e)?e.map(e=>e?.message||``).join(`
|
|
2
|
+
`):``;n||=`GraphQL error`,super(n),this.errors=e,this.data=t}};function dispatchQueueBatch(e,t){let n=t.map(e=>e.request);n.length===1&&(n=n[0]),(()=>{try{return e.fetcher(n)}catch(e){return Promise.reject(e)}})().then(e=>{if(t.length===1&&!Array.isArray(e)){if(e.errors&&e.errors.length){t[0].reject(new GenqlError(e.errors,e.data));return}t[0].resolve(e);return}else if(e.length!==t.length)throw Error(`response length did not match query length`);for(let n=0;n<t.length;n++)e[n].errors&&e[n].errors.length?t[n].reject(new GenqlError(e[n].errors,e[n].data)):t[n].resolve(e[n])}).catch(e=>{for(let n=0;n<t.length;n++)t[n].reject(e)})}function dispatchQueue(e,t){let n=e._queue,r=t.maxBatchSize||0;if(e._queue=[],r>0&&r<n.length)for(let t=0;t<n.length/r;t++)dispatchQueueBatch(e,n.slice(t*r,(t+1)*r));else dispatchQueueBatch(e,n)}var a=class QueryBatcher{fetcher;_options;_queue;constructor(e,{batchInterval:t=6,shouldBatch:n=!0,maxBatchSize:r=0}={}){this.fetcher=e,this._options={batchInterval:t,shouldBatch:n,maxBatchSize:r},this._queue=[]}fetch(e,t,n,r={}){let i={query:e},a=Object.assign({},this._options,r);return t&&(i.variables=t),n&&(i.operationName=n),new Promise((e,t)=>{this._queue.push({request:i,resolve:e,reject:t}),this._queue.length===1&&(a.shouldBatch?setTimeout(()=>dispatchQueue(this,a),a.batchInterval):dispatchQueue(this,a))})}forceFetch(e,t,n,r={}){let i={query:e},a=Object.assign({},this._options,r,{shouldBatch:!1});return t&&(i.variables=t),n&&(i.operationName=n),new Promise((e,t)=>{let n=new QueryBatcher(this.fetcher,this._options);n._queue=[{request:i,resolve:e,reject:t}],dispatchQueue(n,a)})}};const o={maxBatchSize:10,batchInterval:40},createFetcher=({url:e,headers:t={},fetcher,fetch:n,batch:r=!1,...i})=>{if(!e&&!fetcher)throw Error(`url or fetcher is required`);if(fetcher||=(async r=>{let a=typeof t==`function`?await t():t;if(a||={},typeof fetch>`u`&&!n)throw Error("Global `fetch` function is not available, pass a fetch polyfill to Genql `createClient`");let o=await(n||fetch)(e,{headers:{"Content-Type":`application/json`,...a},method:`POST`,body:JSON.stringify(r),...i});if(!o.ok)throw Error(`${o.statusText}: ${await o.text()}`);return await o.json()}),!r)return async e=>{let t=await fetcher(e);if(Array.isArray(t))return t.map(e=>{if(e?.errors?.length)throw new GenqlError(e.errors||[],e.data);return e.data});if(t?.errors?.length)throw new GenqlError(t.errors||[],t.data);return t.data};let s=new a(async e=>await fetcher(e),r===!0?o:r);return async({query:e,variables:t})=>{let n=await s.fetch(e,t);if(n?.data)return n.data;throw Error(`Genql batch fetcher returned unexpected result `+JSON.stringify(n))}},parseRequest=(e,t,n)=>{if(typeof e==`object`&&`__args`in e){let r=e.__args,i={...e};delete i.__args;let a=Object.keys(r);if(a.length===0)return parseRequest(i,t,n);let o=getFieldFromPath(t.root,n);return`(${a.map(e=>{t.varCounter++;let i=`v${t.varCounter}`,a=o.args&&o.args[e];if(!a)throw Error(`no typing defined for argument \`${e}\` in path \`${n.join(`.`)}\``);return t.variables[i]={value:r[e],typing:a},`${e}:$${i}`})})${parseRequest(i,t,n)}`}else if(typeof e==`object`&&Object.keys(e).length>0){let r=e,i=Object.keys(r).filter(e=>!!r[e]);if(i.length===0)throw Error(`field selection should not be empty: ${n.join(`.`)}`);let a=n.length>0?getFieldFromPath(t.root,n).type:t.root,o=a.scalar,s;if(i.includes(`__scalar`)){let e=new Set(Object.keys(r).filter(e=>!r[e]));o?.length&&(t.fragmentCounter++,s=`f${t.fragmentCounter}`,t.fragments.push(`fragment ${s} on ${a.name}{${o.filter(t=>!e.has(t)).join(`,`)}}`))}return`{${i.filter(e=>![`__scalar`,`__name`].includes(e)).map(e=>{let i=parseRequest(r[e],t,[...n,e]);if(e.startsWith(`on_`)){t.fragmentCounter++;let n=`f${t.fragmentCounter}`,r=e.match(/^on_(.+)/);if(!r||!r[1])throw Error(`match failed`);return t.fragments.push(`fragment ${n} on ${r[1]}${i}`),`...${n}`}else return`${e}${i}`}).concat(s?[`...${s}`]:[]).join(`,`)}}`}else return``},generateGraphqlOperation=(e,t,n)=>{let r={root:t,varCounter:0,variables:{},fragmentCounter:0,fragments:[]},i=parseRequest(n,r,[]),a=Object.keys(r.variables),o=a.length>0?`(${a.map(e=>`$${e}:${r.variables[e].typing[1]}`)})`:``,s=n?.__name||``;return{query:[`${e} ${s}${o}${i}`,...r.fragments].join(`,`),variables:Object.keys(r.variables).reduce((e,t)=>(e[t]=r.variables[t].value,e),{}),...s?{operationName:s.toString()}:{}}},getFieldFromPath=(e,t)=>{let n;if(!e)throw Error(`root type is not provided`);if(t.length===0)throw Error(`path is empty`);return t.forEach(t=>{let r=n?n.type:e;if(!r.fields)throw Error(`type \`${r.name}\` does not have fields`);let i=Object.keys(r.fields).filter(e=>e.startsWith(`on_`)).reduce((e,t)=>{let n=r.fields&&r.fields[t];return n&&e.push(n.type),e},[r]),a=null;if(i.forEach(e=>{let n=e.fields&&e.fields[t];n&&(a=n)}),!a)throw Error(`type \`${r.name}\` does not have a field \`${t}\``);n=a}),n},s=__name(({queryRoot:e,mutationRoot:t,subscriptionRoot:n,...r})=>{let i=createFetcher(r),a={};return e&&(a.query=t=>{if(!e)throw Error(`queryRoot argument is missing`);return i(generateGraphqlOperation(`query`,e,t))}),t&&(a.mutation=e=>{if(!t)throw Error(`mutationRoot argument is missing`);return i(generateGraphqlOperation(`mutation`,t,e))}),a},`createClient`),linkTypeMap=e=>{let t=Object.assign({},...Object.keys(e.types).map((e,t)=>({[t]:e})));return resolveConcreteTypes(Object.assign({},...Object.keys(e.types||{}).map(n=>{let r=e.types[n]||{};return{[n]:{name:n,scalar:Object.keys(r).filter(t=>{let[n]=r[t]||[];if(!(n&&e.scalars.includes(n)))return!1;let i=r[t]?.[1];return!Object.values(i||{}).map(e=>e?.[1]).filter(Boolean).some(e=>e&&e.endsWith(`!`))}),fields:Object.assign({},...Object.keys(r).map(e=>{let[n,i]=r[e]||[];return n==null?{}:{[e]:{type:t[n],args:Object.assign({},...Object.keys(i||{}).map(e=>{if(!i||!i[e])return;let[n,r]=i[e];return{[e]:[t[n],r||t[n]]}}))}}}))}}})))},resolveConcreteTypes=e=>(Object.keys(e).forEach(t=>{let n=e[t];if(!n.fields)return;let r=n.fields;Object.keys(r).forEach(t=>{let n=r[t];if(n.args){let t=n.args;Object.keys(t).forEach(n=>{let r=t[n];if(r){let[t]=r;typeof t==`string`&&(e[t]||(e[t]={name:t}),r[0]=e[t])}})}let i=n.type;typeof i==`string`&&(e[i]||(e[i]={name:i}),n.type=e[i])})}),e),c=linkTypeMap({scalars:[16,84,92,96,104,139,143,151,153,154,186,188,189,201,213,221,325,327,329,330,333,399,412,416,423,427,431,434,442,449,455,456,457,460,478,479,480,484,485,487,488,499,501,502,503,504,506,523,531,533,538,539,541,542,546,547,562,563,571,581,582,588,589,590,592,593,599,605,606,609,614,619,620,622,624,629,636,642,648,652,661,668,669,670,671,679,683,687,694,701,702,716,723,749,750,758,759,760,761,764,765,769,770,776,777,789,791,794,795,796,799,804,812,821,823,824,826,827,835,837,839,854,855,856,859,860,862,865,879,881,885,890,895,908,912,913,918,924,931,936,941,945,948,949,956,967,968,992,995,997,1004,1006,1008,1011,1019,1024,1025,1029,1031,1036,1047,1048,1058,1060,1062,1069,1072,1074,1075,1079,1081,1090,1091,1104,1108,1119,1137,1181,1183,1186,1188,1200,1202,1204,1206,1208,1216,1223,1231,1232,1233,1238,1239,1244,1245,1250,1252,1254,1264,1265,1268,1274,1275,1279,1284,1285,1287,1294,1331,1332,1336,1337,1342,1346,1348,1350,1354,1356,1360,1365,1382,1388,1392,1398,1400,1404,1405,1406,1408,1412,1418,1426,1428,1429,1430,1431,1432,1435,1454,1455,1468,1486,1487,1488,1489,1491,1492,1498,1499,1501,1504,1505,1508,1509,1517,1518,1698,1720,1721,1726,1740,1741,1744,1745],types:{AbortQueuedMigrationsInput:{clientMutationId:[1455],ownerId:[605],__typename:[1455]},AbortQueuedMigrationsPayload:{clientMutationId:[1455],success:[104],__typename:[1455]},AbortRepositoryMigrationInput:{clientMutationId:[1455],migrationId:[605],__typename:[1455]},AbortRepositoryMigrationPayload:{clientMutationId:[1455],success:[104],__typename:[1455]},AcceptEnterpriseAdministratorInvitationInput:{clientMutationId:[1455],invitationId:[605],__typename:[1455]},AcceptEnterpriseAdministratorInvitationPayload:{clientMutationId:[1455],invitation:[474],message:[1455],__typename:[1455]},AcceptEnterpriseMemberInvitationInput:{clientMutationId:[1455],invitationId:[605],__typename:[1455]},AcceptEnterpriseMemberInvitationPayload:{clientMutationId:[1455],invitation:[495],message:[1455],__typename:[1455]},AcceptTopicSuggestionInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],__typename:[1455]},AcceptTopicSuggestionPayload:{clientMutationId:[1455],topic:[1506],__typename:[1455]},AccessUserNamespaceRepositoryInput:{clientMutationId:[1455],enterpriseId:[605],repositoryId:[605],__typename:[1455]},AccessUserNamespaceRepositoryPayload:{clientMutationId:[1455],expiresAt:[330],repository:[1207],__typename:[1455]},Actor:{avatarUrl:[1518,{size:[609]}],login:[1455],resourcePath:[1518],url:[1518],on_Bot:[105],on_EnterpriseUserAccount:[540],on_Mannequin:[719],on_Organization:[841],on_User:[1697],__typename:[1455]},ActorConnection:{edges:[14],nodes:[12],pageInfo:[892],totalCount:[609],__typename:[1455]},ActorEdge:{cursor:[1455],node:[12],__typename:[1455]},ActorLocation:{city:[1455],country:[1455],countryCode:[1455],region:[1455],regionCode:[1455],__typename:[1455]},ActorType:{},AddAssigneesToAssignableInput:{clientMutationId:[1455],assignableId:[605],assigneeIds:[605],agentAssignment:[62],__typename:[1455]},AddAssigneesToAssignablePayload:{assignable:[76],clientMutationId:[1455],__typename:[1455]},AddBlockedByInput:{clientMutationId:[1455],issueId:[605],blockingIssueId:[605],__typename:[1455]},AddBlockedByPayload:{blockingIssue:[623],clientMutationId:[1455],issue:[623],__typename:[1455]},AddCommentInput:{clientMutationId:[1455],subjectId:[605],body:[1455],__typename:[1455]},AddCommentPayload:{clientMutationId:[1455],commentEdge:[627],subject:[788],timelineEdge:[675],__typename:[1455]},AddDiscussionCommentInput:{clientMutationId:[1455],discussionId:[605],replyToId:[605],body:[1455],__typename:[1455]},AddDiscussionCommentPayload:{clientMutationId:[1455],comment:[443],__typename:[1455]},AddDiscussionPollVoteInput:{clientMutationId:[1455],pollOptionId:[605],__typename:[1455]},AddDiscussionPollVotePayload:{clientMutationId:[1455],pollOption:[451],__typename:[1455]},AddEnterpriseOrganizationMemberInput:{clientMutationId:[1455],enterpriseId:[605],organizationId:[605],userIds:[605],role:[859],__typename:[1455]},AddEnterpriseOrganizationMemberPayload:{clientMutationId:[1455],users:[1697],__typename:[1455]},AddEnterpriseSupportEntitlementInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],__typename:[1455]},AddEnterpriseSupportEntitlementPayload:{clientMutationId:[1455],message:[1455],__typename:[1455]},AddLabelsToLabelableInput:{clientMutationId:[1455],labelableId:[605],labelIds:[605],__typename:[1455]},AddLabelsToLabelablePayload:{clientMutationId:[1455],labelable:[695],__typename:[1455]},AddProjectCardInput:{clientMutationId:[1455],projectColumnId:[605],contentId:[605],note:[1455],__typename:[1455]},AddProjectCardPayload:{cardEdge:[933],clientMutationId:[1455],projectColumn:[937],__typename:[1455]},AddProjectColumnInput:{clientMutationId:[1455],projectId:[605],name:[1455],__typename:[1455]},AddProjectColumnPayload:{clientMutationId:[1455],columnEdge:[939],project:[929],__typename:[1455]},AddProjectV2DraftIssueInput:{clientMutationId:[1455],projectId:[605],title:[1455],body:[1455],assigneeIds:[605],__typename:[1455]},AddProjectV2DraftIssuePayload:{clientMutationId:[1455],projectItem:[972],__typename:[1455]},AddProjectV2ItemByIdInput:{clientMutationId:[1455],projectId:[605],contentId:[605],__typename:[1455]},AddProjectV2ItemByIdPayload:{clientMutationId:[1455],item:[972],__typename:[1455]},AddPullRequestReviewCommentInput:{clientMutationId:[1455],pullRequestId:[605],pullRequestReviewId:[605],commitOID:[588],body:[1455],path:[1455],position:[609],inReplyTo:[605],__typename:[1455]},AddPullRequestReviewCommentPayload:{clientMutationId:[1455],comment:[1066],commentEdge:[1068],__typename:[1455]},AddPullRequestReviewInput:{clientMutationId:[1455],pullRequestId:[605],commitOID:[588],body:[1455],event:[1074],comments:[464],threads:[465],__typename:[1455]},AddPullRequestReviewPayload:{clientMutationId:[1455],pullRequestReview:[1065],reviewEdge:[1073],__typename:[1455]},AddPullRequestReviewThreadInput:{clientMutationId:[1455],path:[1455],body:[1455],pullRequestId:[605],pullRequestReviewId:[605],line:[609],side:[434],startLine:[609],startSide:[434],subjectType:[1079],__typename:[1455]},AddPullRequestReviewThreadPayload:{clientMutationId:[1455],thread:[1076],__typename:[1455]},AddPullRequestReviewThreadReplyInput:{clientMutationId:[1455],pullRequestReviewId:[605],pullRequestReviewThreadId:[605],body:[1455],__typename:[1455]},AddPullRequestReviewThreadReplyPayload:{clientMutationId:[1455],comment:[1066],__typename:[1455]},AddReactionInput:{clientMutationId:[1455],subjectId:[605],content:[1104],__typename:[1455]},AddReactionPayload:{clientMutationId:[1455],reaction:[1102],reactionGroups:[1106],subject:[1099],__typename:[1455]},AddStarInput:{clientMutationId:[1455],starrableId:[605],__typename:[1455]},AddStarPayload:{clientMutationId:[1455],starrable:[1438],__typename:[1455]},AddSubIssueInput:{clientMutationId:[1455],issueId:[605],subIssueId:[605],subIssueUrl:[1455],replaceParent:[104],__typename:[1455]},AddSubIssuePayload:{clientMutationId:[1455],issue:[623],subIssue:[623],__typename:[1455]},AddUpvoteInput:{clientMutationId:[1455],subjectId:[605],__typename:[1455]},AddUpvotePayload:{clientMutationId:[1455],subject:[1731],__typename:[1455]},AddVerifiableDomainInput:{clientMutationId:[1455],ownerId:[605],domain:[1518],__typename:[1455]},AddVerifiableDomainPayload:{clientMutationId:[1455],domain:[1722],__typename:[1455]},AddedToMergeQueueEvent:{actor:[12],createdAt:[330],enqueuer:[1697],id:[605],mergeQueue:[753],pullRequest:[1046],__typename:[1455]},AddedToProjectEvent:{actor:[12],createdAt:[330],databaseId:[609],id:[605],project:[929],projectCard:[930],projectColumnName:[1455],__typename:[1455]},AddedToProjectV2Event:{actor:[12],createdAt:[330],id:[605],project:[950],wasAutomated:[104],__typename:[1455]},AgentAssignmentInput:{targetRepositoryId:[605],baseRef:[1455],customInstructions:[1455],customAgent:[1455],__typename:[1455]},Agentic:{viewerCopilotAgentCreatesChannel:[1455],viewerCopilotAgentLogUpdatesChannel:[1455],viewerCopilotAgentTaskUpdatesChannel:[1455],viewerCopilotAgentUpdatesChannel:[1455],on_User:[1697],__typename:[1455]},AnnouncementBanner:{createdAt:[330],expiresAt:[330],isUserDismissible:[104],message:[1455],__typename:[1455]},App:{clientId:[1455],createdAt:[330],databaseId:[609],description:[1455],id:[605],ipAllowListEntries:[616,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[618]}],logoBackgroundColor:[1455],logoUrl:[1518,{size:[609]}],name:[1455],slug:[1455],updatedAt:[330],url:[1518],__typename:[1455]},ApproveDeploymentsInput:{clientMutationId:[1455],workflowRunId:[605],environmentIds:[605],comment:[1455],__typename:[1455]},ApproveDeploymentsPayload:{clientMutationId:[1455],deployments:[407],__typename:[1455]},ApproveVerifiableDomainInput:{clientMutationId:[1455],id:[605],__typename:[1455]},ApproveVerifiableDomainPayload:{clientMutationId:[1455],domain:[1722],__typename:[1455]},ArchiveProjectV2ItemInput:{clientMutationId:[1455],projectId:[605],itemId:[605],__typename:[1455]},ArchiveProjectV2ItemPayload:{clientMutationId:[1455],item:[972],__typename:[1455]},ArchivePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},ArchivePullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},ArchiveRepositoryInput:{clientMutationId:[1455],repositoryId:[605],__typename:[1455]},ArchiveRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},Assignable:{assignedActors:[79,{after:[1455],before:[1455],first:[609],last:[609]}],assignees:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],suggestedActors:[79,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],on_Issue:[623],on_PullRequest:[1046],__typename:[1455]},AssignedEvent:{actor:[12],assignable:[76],assignee:[78],createdAt:[330],id:[605],user:[1697],__typename:[1455]},Assignee:{on_Bot:[105],on_Mannequin:[719],on_Organization:[841],on_User:[1697],on_Actor:[12],on_Node:[788],on_UniformResourceLocatable:[1530],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_Agentic:[63],__typename:[1455]},AssigneeConnection:{edges:[80],nodes:[78],pageInfo:[892],totalCount:[609],__typename:[1455]},AssigneeEdge:{cursor:[1455],node:[78],__typename:[1455]},AuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],operationType:[795],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_OauthApplicationCreateAuditEntry:[793],on_OrgAddBillingManagerAuditEntry:[797],on_OrgAddMemberAuditEntry:[798],on_OrgBlockUserAuditEntry:[800],on_OrgConfigDisableCollaboratorsOnlyAuditEntry:[801],on_OrgConfigEnableCollaboratorsOnlyAuditEntry:[802],on_OrgCreateAuditEntry:[803],on_OrgDisableOauthAppRestrictionsAuditEntry:[805],on_OrgDisableSamlAuditEntry:[806],on_OrgDisableTwoFactorRequirementAuditEntry:[807],on_OrgEnableOauthAppRestrictionsAuditEntry:[808],on_OrgEnableSamlAuditEntry:[809],on_OrgEnableTwoFactorRequirementAuditEntry:[810],on_OrgInviteMemberAuditEntry:[813],on_OrgInviteToBusinessAuditEntry:[814],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],on_OrgRemoveBillingManagerAuditEntry:[820],on_OrgRemoveMemberAuditEntry:[822],on_OrgRemoveOutsideCollaboratorAuditEntry:[825],on_OrgRestoreMemberAuditEntry:[828],on_OrgUnblockUserAuditEntry:[833],on_OrgUpdateDefaultRepositoryPermissionAuditEntry:[834],on_OrgUpdateMemberAuditEntry:[836],on_OrgUpdateMemberRepositoryCreationPermissionAuditEntry:[838],on_OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:[840],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],__typename:[1455]},AuditEntryActor:{on_Bot:[105],on_Organization:[841],on_User:[1697],on_Actor:[12],on_Node:[788],on_UniformResourceLocatable:[1530],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_Agentic:[63],__typename:[1455]},AuditLogOrder:{field:[84],direction:[796],__typename:[1455]},AuditLogOrderField:{},AutoMergeDisabledEvent:{actor:[12],createdAt:[330],disabler:[1697],id:[605],pullRequest:[1046],reason:[1455],reasonCode:[1455],__typename:[1455]},AutoMergeEnabledEvent:{actor:[12],createdAt:[330],enabler:[1697],id:[605],pullRequest:[1046],__typename:[1455]},AutoMergeRequest:{authorEmail:[1455],commitBody:[1455],commitHeadline:[1455],enabledAt:[330],enabledBy:[12],mergeMethod:[1060],pullRequest:[1046],__typename:[1455]},AutoRebaseEnabledEvent:{actor:[12],createdAt:[330],enabler:[1697],id:[605],pullRequest:[1046],__typename:[1455]},AutoSquashEnabledEvent:{actor:[12],createdAt:[330],enabler:[1697],id:[605],pullRequest:[1046],__typename:[1455]},AutomaticBaseChangeFailedEvent:{actor:[12],createdAt:[330],id:[605],newBase:[1455],oldBase:[1455],pullRequest:[1046],__typename:[1455]},AutomaticBaseChangeSucceededEvent:{actor:[12],createdAt:[330],id:[605],newBase:[1455],oldBase:[1455],pullRequest:[1046],__typename:[1455]},Base64String:{},BaseRefChangedEvent:{actor:[12],createdAt:[330],currentRefName:[1455],databaseId:[609],id:[605],previousRefName:[1455],pullRequest:[1046],__typename:[1455]},BaseRefDeletedEvent:{actor:[12],baseRefName:[1455],createdAt:[330],id:[605],pullRequest:[1046],__typename:[1455]},BaseRefForcePushedEvent:{actor:[12],afterCommit:[191],beforeCommit:[191],createdAt:[330],id:[605],pullRequest:[1046],ref:[1113],__typename:[1455]},BigInt:{},Blame:{ranges:[98],__typename:[1455]},BlameRange:{age:[609],commit:[191],endingLine:[609],startingLine:[609],__typename:[1455]},Blob:{abbreviatedOid:[1455],byteSize:[609],commitResourcePath:[1518],commitUrl:[1518],id:[605],isBinary:[104],isTruncated:[104],oid:[588],repository:[1207],text:[1455],__typename:[1455]},BlockedByAddedEvent:{actor:[12],blockingIssue:[623],createdAt:[330],id:[605],__typename:[1455]},BlockedByRemovedEvent:{actor:[12],blockingIssue:[623],createdAt:[330],id:[605],__typename:[1455]},BlockingAddedEvent:{actor:[12],blockedIssue:[623],createdAt:[330],id:[605],__typename:[1455]},BlockingRemovedEvent:{actor:[12],blockedIssue:[623],createdAt:[330],id:[605],__typename:[1455]},Boolean:{},Bot:{avatarUrl:[1518,{size:[609]}],createdAt:[330],databaseId:[609],id:[605],login:[1455],resourcePath:[1518],updatedAt:[330],url:[1518],__typename:[1455]},BranchActorAllowanceActor:{on_App:[65],on_Team:[1476],on_User:[1697],on_Node:[788],on_MemberStatusable:[742],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},BranchNamePatternParameters:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},BranchNamePatternParametersInput:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},BranchProtectionRule:{allowsDeletions:[104],allowsForcePushes:[104],blocksCreations:[104],branchProtectionRuleConflicts:[111,{after:[1455],before:[1455],first:[609],last:[609]}],bypassForcePushAllowances:[118,{after:[1455],before:[1455],first:[609],last:[609]}],bypassPullRequestAllowances:[121,{after:[1455],before:[1455],first:[609],last:[609]}],creator:[12],databaseId:[609],dismissesStaleReviews:[104],id:[605],isAdminEnforced:[104],lockAllowsFetchAndMerge:[104],lockBranch:[104],matchingRefs:[1114,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],pattern:[1455],pushAllowances:[1095,{after:[1455],before:[1455],first:[609],last:[609]}],repository:[1207],requireLastPushApproval:[104],requiredApprovingReviewCount:[609],requiredDeploymentEnvironments:[1455],requiredStatusCheckContexts:[1455],requiredStatusChecks:[1303],requiresApprovingReviews:[104],requiresCodeOwnerReviews:[104],requiresCommitSignatures:[104],requiresConversationResolution:[104],requiresDeployments:[104],requiresLinearHistory:[104],requiresStatusChecks:[104],requiresStrictStatusChecks:[104],restrictsPushes:[104],restrictsReviewDismissals:[104],reviewDismissalAllowances:[1318,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},BranchProtectionRuleConflict:{branchProtectionRule:[109],conflictingBranchProtectionRule:[109],ref:[1113],__typename:[1455]},BranchProtectionRuleConflictConnection:{edges:[112],nodes:[110],pageInfo:[892],totalCount:[609],__typename:[1455]},BranchProtectionRuleConflictEdge:{cursor:[1455],node:[110],__typename:[1455]},BranchProtectionRuleConnection:{edges:[114],nodes:[109],pageInfo:[892],totalCount:[609],__typename:[1455]},BranchProtectionRuleEdge:{cursor:[1455],node:[109],__typename:[1455]},BulkSponsorship:{sponsorableId:[605],sponsorableLogin:[1455],amount:[609],__typename:[1455]},BypassActor:{on_App:[65],on_Team:[1476],on_User:[1697],on_Node:[788],on_MemberStatusable:[742],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},BypassForcePushAllowance:{actor:[106],branchProtectionRule:[109],id:[605],__typename:[1455]},BypassForcePushAllowanceConnection:{edges:[119],nodes:[117],pageInfo:[892],totalCount:[609],__typename:[1455]},BypassForcePushAllowanceEdge:{cursor:[1455],node:[117],__typename:[1455]},BypassPullRequestAllowance:{actor:[106],branchProtectionRule:[109],id:[605],__typename:[1455]},BypassPullRequestAllowanceConnection:{edges:[122],nodes:[120],pageInfo:[892],totalCount:[609],__typename:[1455]},BypassPullRequestAllowanceEdge:{cursor:[1455],node:[120],__typename:[1455]},CVSS:{score:[563],vectorString:[1455],__typename:[1455]},CWE:{cweId:[1455],description:[1455],id:[605],name:[1455],__typename:[1455]},CWEConnection:{edges:[126],nodes:[124],pageInfo:[892],totalCount:[609],__typename:[1455]},CWEEdge:{cursor:[1455],node:[124],__typename:[1455]},CancelEnterpriseAdminInvitationInput:{clientMutationId:[1455],invitationId:[605],__typename:[1455]},CancelEnterpriseAdminInvitationPayload:{clientMutationId:[1455],invitation:[474],message:[1455],__typename:[1455]},CancelEnterpriseMemberInvitationInput:{clientMutationId:[1455],invitationId:[605],__typename:[1455]},CancelEnterpriseMemberInvitationPayload:{clientMutationId:[1455],invitation:[495],message:[1455],__typename:[1455]},CancelSponsorshipInput:{clientMutationId:[1455],sponsorId:[605],sponsorLogin:[1455],sponsorableId:[605],sponsorableLogin:[1455],__typename:[1455]},CancelSponsorshipPayload:{clientMutationId:[1455],sponsorsTier:[1413],__typename:[1455]},ChangeUserStatusInput:{clientMutationId:[1455],emoji:[1455],message:[1455],organizationId:[605],limitedAvailability:[104],expiresAt:[330],__typename:[1455]},ChangeUserStatusPayload:{clientMutationId:[1455],status:[1716],__typename:[1455]},CheckAnnotation:{annotationLevel:[139],blobUrl:[1518],databaseId:[609],fullDatabaseId:[96],location:[142],message:[1455],path:[1455],rawDetails:[1455],title:[1455],__typename:[1455]},CheckAnnotationConnection:{edges:[138],nodes:[135],pageInfo:[892],totalCount:[609],__typename:[1455]},CheckAnnotationData:{path:[1455],location:[141],annotationLevel:[139],message:[1455],title:[1455],rawDetails:[1455],__typename:[1455]},CheckAnnotationEdge:{cursor:[1455],node:[135],__typename:[1455]},CheckAnnotationLevel:{},CheckAnnotationPosition:{column:[609],line:[609],__typename:[1455]},CheckAnnotationRange:{startLine:[609],startColumn:[609],endLine:[609],endColumn:[609],__typename:[1455]},CheckAnnotationSpan:{end:[140],start:[140],__typename:[1455]},CheckConclusionState:{},CheckRun:{annotations:[136,{after:[1455],before:[1455],first:[609],last:[609]}],checkSuite:[158],completedAt:[330],conclusion:[143],databaseId:[609],deployment:[407],detailsUrl:[1518],externalId:[1455],id:[605],isRequired:[104,{pullRequestId:[605],pullRequestNumber:[609]}],name:[1455],pendingDeploymentRequest:[417],permalink:[1518],repository:[1207],resourcePath:[1518],startedAt:[330],status:[154],steps:[156,{after:[1455],before:[1455],first:[609],last:[609],number:[609]}],summary:[1455],text:[1455],title:[1455],url:[1518],__typename:[1455]},CheckRunAction:{label:[1455],description:[1455],identifier:[1455],__typename:[1455]},CheckRunConnection:{edges:[147],nodes:[144],pageInfo:[892],totalCount:[609],__typename:[1455]},CheckRunEdge:{cursor:[1455],node:[144],__typename:[1455]},CheckRunFilter:{checkType:[153],appId:[609],checkName:[1455],status:[154],statuses:[154],conclusions:[143],__typename:[1455]},CheckRunOutput:{title:[1455],summary:[1455],text:[1455],annotations:[137],images:[150],__typename:[1455]},CheckRunOutputImage:{alt:[1455],imageUrl:[1518],caption:[1455],__typename:[1455]},CheckRunState:{},CheckRunStateCount:{count:[609],state:[151],__typename:[1455]},CheckRunType:{},CheckStatusState:{},CheckStep:{completedAt:[330],conclusion:[143],externalId:[1455],name:[1455],number:[609],secondsToCompletion:[609],startedAt:[330],status:[154],__typename:[1455]},CheckStepConnection:{edges:[157],nodes:[155],pageInfo:[892],totalCount:[609],__typename:[1455]},CheckStepEdge:{cursor:[1455],node:[155],__typename:[1455]},CheckSuite:{app:[65],branch:[1113],checkRuns:[146,{after:[1455],before:[1455],first:[609],last:[609],filterBy:[148]}],commit:[191],conclusion:[143],createdAt:[330],creator:[1697],databaseId:[609],id:[605],matchingPullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],push:[1092],repository:[1207],resourcePath:[1518],status:[154],updatedAt:[330],url:[1518],workflowRun:[1735],__typename:[1455]},CheckSuiteAutoTriggerPreference:{appId:[605],setting:[104],__typename:[1455]},CheckSuiteConnection:{edges:[161],nodes:[158],pageInfo:[892],totalCount:[609],__typename:[1455]},CheckSuiteEdge:{cursor:[1455],node:[158],__typename:[1455]},CheckSuiteFilter:{appId:[609],checkName:[1455],__typename:[1455]},Claimable:{on_Mannequin:[719],on_User:[1697],on_Actor:[12],on_Node:[788],on_UniformResourceLocatable:[1530],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],__typename:[1455]},ClearLabelsFromLabelableInput:{clientMutationId:[1455],labelableId:[605],__typename:[1455]},ClearLabelsFromLabelablePayload:{clientMutationId:[1455],labelable:[695],__typename:[1455]},ClearProjectV2ItemFieldValueInput:{clientMutationId:[1455],projectId:[605],itemId:[605],fieldId:[605],__typename:[1455]},ClearProjectV2ItemFieldValuePayload:{clientMutationId:[1455],projectV2Item:[972],__typename:[1455]},CloneProjectInput:{clientMutationId:[1455],targetOwnerId:[605],sourceId:[605],includeWorkflows:[104],name:[1455],body:[1455],public:[104],__typename:[1455]},CloneProjectPayload:{clientMutationId:[1455],jobStatusId:[1455],project:[929],__typename:[1455]},CloneTemplateRepositoryInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],ownerId:[605],description:[1455],visibility:[1279],includeAllBranches:[104],__typename:[1455]},CloneTemplateRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},Closable:{closed:[104],closedAt:[330],viewerCanClose:[104],viewerCanReopen:[104],on_Discussion:[438],on_Issue:[623],on_Milestone:[771],on_Project:[929],on_ProjectV2:[950],on_PullRequest:[1046],__typename:[1455]},CloseDiscussionInput:{clientMutationId:[1455],discussionId:[605],reason:[442],__typename:[1455]},CloseDiscussionPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},CloseIssueInput:{clientMutationId:[1455],issueId:[605],stateReason:[624],duplicateIssueId:[605],__typename:[1455]},CloseIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},ClosePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},ClosePullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},ClosedEvent:{actor:[12],closable:[172],closer:[180],createdAt:[330],duplicateOf:[666],id:[605],resourcePath:[1518],stateReason:[671],url:[1518],__typename:[1455]},Closer:{on_Commit:[191],on_ProjectV2:[950],on_PullRequest:[1046],on_GitObject:[587],on_Node:[788],on_Subscribable:[1465],on_UniformResourceLocatable:[1530],on_Closable:[172],on_Updatable:[1561],on_Assignable:[76],on_Comment:[187],on_Labelable:[695],on_Lockable:[717],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_UpdatableComment:[1562],__typename:[1455]},CodeOfConduct:{body:[1455],id:[605],key:[1455],name:[1455],resourcePath:[1518],url:[1518],__typename:[1455]},CodeScanningParameters:{codeScanningTools:[184],__typename:[1455]},CodeScanningParametersInput:{codeScanningTools:[185],__typename:[1455]},CodeScanningTool:{alertsThreshold:[1455],securityAlertsThreshold:[1455],tool:[1455],__typename:[1455]},CodeScanningToolInput:{alertsThreshold:[1455],securityAlertsThreshold:[1455],tool:[1455],__typename:[1455]},CollaboratorAffiliation:{},Comment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],createdAt:[330],createdViaEmail:[104],editor:[12],id:[605],includesCreatedEdit:[104],lastEditedAt:[330],publishedAt:[330],updatedAt:[330],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerDidAuthor:[104],on_CommitComment:[195],on_Discussion:[438],on_DiscussionComment:[443],on_GistComment:[574],on_Issue:[623],on_IssueComment:[625],on_PullRequest:[1046],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],__typename:[1455]},CommentAuthorAssociation:{},CommentCannotUpdateReason:{},CommentDeletedEvent:{actor:[12],createdAt:[330],databaseId:[609],deletedCommentAuthor:[12],id:[605],__typename:[1455]},Commit:{abbreviatedOid:[1455],additions:[609],associatedPullRequests:[1056,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1061]}],author:[583],authoredByCommitter:[104],authoredDate:[330],authors:[584,{after:[1455],before:[1455],first:[609],last:[609]}],blame:[97,{path:[1455,`String!`]}],changedFiles:[609],changedFilesIfAvailable:[609],checkSuites:[160,{after:[1455],before:[1455],first:[609],last:[609],filterBy:[162]}],comments:[196,{after:[1455],before:[1455],first:[609],last:[609]}],commitResourcePath:[1518],commitUrl:[1518],committedDate:[330],committedViaWeb:[104],committer:[583],deletions:[609],deployments:[408,{environments:[1455,`[String!]`],orderBy:[411],after:[1455],before:[1455],first:[609],last:[609]}],file:[1516,{path:[1455,`String!`]}],history:[204,{after:[1455],before:[1455],first:[609],last:[609],path:[1455],author:[192],since:[593],until:[593]}],id:[605],message:[1455],messageBody:[1455],messageBodyHTML:[599],messageHeadline:[1455],messageHeadlineHTML:[599],oid:[588],onBehalfOf:[841],parents:[199,{after:[1455],before:[1455],first:[609],last:[609]}],pushedDate:[330],repository:[1207],resourcePath:[1518],signature:[591],status:[1445],statusCheckRollup:[1448],submodules:[1463,{after:[1455],before:[1455],first:[609],last:[609]}],tarballUrl:[1518],tree:[1515],treeResourcePath:[1518],treeUrl:[1518],url:[1518],viewerCanSubscribe:[104],viewerSubscription:[1468],zipballUrl:[1518],__typename:[1455]},CommitAuthor:{id:[605],emails:[1455],__typename:[1455]},CommitAuthorEmailPatternParameters:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},CommitAuthorEmailPatternParametersInput:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},CommitComment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],commit:[191],createdAt:[330],createdViaEmail:[104],databaseId:[609],editor:[12],id:[605],includesCreatedEdit:[104],isMinimized:[104],lastEditedAt:[330],minimizedReason:[1455],path:[1455],position:[609],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMinimize:[104],viewerCanReact:[104],viewerCanUnminimize:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],__typename:[1455]},CommitCommentConnection:{edges:[197],nodes:[195],pageInfo:[892],totalCount:[609],__typename:[1455]},CommitCommentEdge:{cursor:[1455],node:[195],__typename:[1455]},CommitCommentThread:{comments:[196,{after:[1455],before:[1455],first:[609],last:[609]}],commit:[191],id:[605],path:[1455],position:[609],repository:[1207],__typename:[1455]},CommitConnection:{edges:[203],nodes:[191],pageInfo:[892],totalCount:[609],__typename:[1455]},CommitContributionOrder:{field:[201],direction:[796],__typename:[1455]},CommitContributionOrderField:{},CommitContributionsByRepository:{contributions:[306,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[200]}],repository:[1207],resourcePath:[1518],url:[1518],__typename:[1455]},CommitEdge:{cursor:[1455],node:[191],__typename:[1455]},CommitHistoryConnection:{edges:[203],nodes:[191],pageInfo:[892],totalCount:[609],__typename:[1455]},CommitMessage:{headline:[1455],body:[1455],__typename:[1455]},CommitMessagePatternParameters:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},CommitMessagePatternParametersInput:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},CommittableBranch:{id:[605],repositoryNameWithOwner:[1455],branchName:[1455],__typename:[1455]},CommitterEmailPatternParameters:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},CommitterEmailPatternParametersInput:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},Comparison:{aheadBy:[609],baseTarget:[587],behindBy:[609],commits:[212,{after:[1455],before:[1455],first:[609],last:[609]}],headTarget:[587],id:[605],status:[213],__typename:[1455]},ComparisonCommitConnection:{authorCount:[609],edges:[203],nodes:[191],pageInfo:[892],totalCount:[609],__typename:[1455]},ComparisonStatus:{},ConnectedEvent:{actor:[12],createdAt:[330],id:[605],isCrossRepository:[104],source:[1123],subject:[1123],__typename:[1455]},ContributingGuidelines:{body:[1455],resourcePath:[1518],url:[1518],__typename:[1455]},Contribution:{isRestricted:[104],occurredAt:[330],resourcePath:[1518],url:[1518],user:[1697],on_CreatedCommitContribution:[305],on_CreatedIssueContribution:[308],on_CreatedPullRequestContribution:[312],on_CreatedPullRequestReviewContribution:[316],on_CreatedRepositoryContribution:[319],on_JoinedGitHubContribution:[689],on_RestrictedContribution:[1311],__typename:[1455]},ContributionCalendar:{colors:[1455],isHalloween:[104],months:[219],totalContributions:[609],weeks:[220],__typename:[1455]},ContributionCalendarDay:{color:[1455],contributionCount:[609],contributionLevel:[221],date:[329],weekday:[609],__typename:[1455]},ContributionCalendarMonth:{firstDay:[329],name:[1455],totalWeeks:[609],year:[609],__typename:[1455]},ContributionCalendarWeek:{contributionDays:[218],firstDay:[329],__typename:[1455]},ContributionLevel:{},ContributionOrder:{direction:[796],__typename:[1455]},ContributionsCollection:{commitContributionsByRepository:[202,{maxRepositories:[609]}],contributionCalendar:[217],contributionYears:[609],doesEndInCurrentMonth:[104],earliestRestrictedContributionDate:[329],endedAt:[330],firstIssueContribution:[311],firstPullRequestContribution:[315],firstRepositoryContribution:[322],hasActivityInThePast:[104],hasAnyContributions:[104],hasAnyRestrictedContributions:[104],isSingleDay:[104],issueContributions:[309,{after:[1455],before:[1455],first:[609],last:[609],excludeFirst:[104],excludePopular:[104],orderBy:[222]}],issueContributionsByRepository:[633,{maxRepositories:[609],excludeFirst:[104],excludePopular:[104]}],joinedGitHubContribution:[689],latestRestrictedContributionDate:[329],mostRecentCollectionWithActivity:[223],mostRecentCollectionWithoutActivity:[223],popularIssueContribution:[308],popularPullRequestContribution:[312],pullRequestContributions:[313,{after:[1455],before:[1455],first:[609],last:[609],excludeFirst:[104],excludePopular:[104],orderBy:[222]}],pullRequestContributionsByRepository:[1057,{maxRepositories:[609],excludeFirst:[104],excludePopular:[104]}],pullRequestReviewContributions:[317,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[222]}],pullRequestReviewContributionsByRepository:[1071,{maxRepositories:[609]}],repositoryContributions:[320,{after:[1455],before:[1455],first:[609],last:[609],excludeFirst:[104],orderBy:[222]}],restrictedContributionsCount:[609],startedAt:[330],totalCommitContributions:[609],totalIssueContributions:[609,{excludeFirst:[104],excludePopular:[104]}],totalPullRequestContributions:[609,{excludeFirst:[104],excludePopular:[104]}],totalPullRequestReviewContributions:[609],totalRepositoriesWithContributedCommits:[609],totalRepositoriesWithContributedIssues:[609,{excludeFirst:[104],excludePopular:[104]}],totalRepositoriesWithContributedPullRequestReviews:[609],totalRepositoriesWithContributedPullRequests:[609,{excludeFirst:[104],excludePopular:[104]}],totalRepositoryContributions:[609,{excludeFirst:[104]}],user:[1697],__typename:[1455]},ConvertProjectCardNoteToIssueInput:{clientMutationId:[1455],projectCardId:[605],repositoryId:[605],title:[1455],body:[1455],__typename:[1455]},ConvertProjectCardNoteToIssuePayload:{clientMutationId:[1455],projectCard:[930],__typename:[1455]},ConvertProjectV2DraftIssueItemToIssueInput:{clientMutationId:[1455],itemId:[605],repositoryId:[605],__typename:[1455]},ConvertProjectV2DraftIssueItemToIssuePayload:{clientMutationId:[1455],item:[972],__typename:[1455]},ConvertPullRequestToDraftInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},ConvertPullRequestToDraftPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},ConvertToDraftEvent:{actor:[12],createdAt:[330],id:[605],pullRequest:[1046],resourcePath:[1518],url:[1518],__typename:[1455]},ConvertedFromDraftEvent:{actor:[12],createdAt:[330],id:[605],project:[950],wasAutomated:[104],__typename:[1455]},ConvertedNoteToIssueEvent:{actor:[12],createdAt:[330],databaseId:[609],id:[605],project:[929],projectCard:[930],projectColumnName:[1455],__typename:[1455]},ConvertedToDiscussionEvent:{actor:[12],createdAt:[330],discussion:[438],id:[605],__typename:[1455]},CopilotCodeReviewParameters:{reviewDraftPullRequests:[104],reviewOnPush:[104],__typename:[1455]},CopilotCodeReviewParametersInput:{reviewDraftPullRequests:[104],reviewOnPush:[104],__typename:[1455]},CopilotEndpoints:{api:[1455],originTracker:[1455],proxy:[1455],telemetry:[1455],__typename:[1455]},CopyProjectV2Input:{clientMutationId:[1455],projectId:[605],ownerId:[605],title:[1455],includeDraftIssues:[104],__typename:[1455]},CopyProjectV2Payload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},CreateAttributionInvitationInput:{clientMutationId:[1455],ownerId:[605],sourceId:[605],targetId:[605],__typename:[1455]},CreateAttributionInvitationPayload:{clientMutationId:[1455],owner:[841],source:[163],target:[163],__typename:[1455]},CreateBranchProtectionRuleInput:{clientMutationId:[1455],repositoryId:[605],pattern:[1455],requiresApprovingReviews:[104],requiredApprovingReviewCount:[609],requiresCommitSignatures:[104],requiresLinearHistory:[104],blocksCreations:[104],allowsForcePushes:[104],allowsDeletions:[104],isAdminEnforced:[104],requiresStatusChecks:[104],requiresStrictStatusChecks:[104],requiresCodeOwnerReviews:[104],dismissesStaleReviews:[104],restrictsReviewDismissals:[104],reviewDismissalActorIds:[605],bypassPullRequestActorIds:[605],bypassForcePushActorIds:[605],restrictsPushes:[104],pushActorIds:[605],requiredStatusCheckContexts:[1455],requiredStatusChecks:[1304],requiresDeployments:[104],requiredDeploymentEnvironments:[1455],requiresConversationResolution:[104],requireLastPushApproval:[104],lockBranch:[104],lockAllowsFetchAndMerge:[104],__typename:[1455]},CreateBranchProtectionRulePayload:{branchProtectionRule:[109],clientMutationId:[1455],__typename:[1455]},CreateCheckRunInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],headSha:[588],detailsUrl:[1518],externalId:[1455],status:[1294],startedAt:[330],conclusion:[143],completedAt:[330],output:[149],actions:[145],__typename:[1455]},CreateCheckRunPayload:{checkRun:[144],clientMutationId:[1455],__typename:[1455]},CreateCheckSuiteInput:{clientMutationId:[1455],repositoryId:[605],headSha:[588],__typename:[1455]},CreateCheckSuitePayload:{checkSuite:[158],clientMutationId:[1455],__typename:[1455]},CreateCommitOnBranchInput:{clientMutationId:[1455],branch:[208],fileChanges:[556],message:[205],expectedHeadOid:[588],__typename:[1455]},CreateCommitOnBranchPayload:{clientMutationId:[1455],commit:[191],ref:[1113],__typename:[1455]},CreateDeploymentInput:{clientMutationId:[1455],repositoryId:[605],refId:[605],autoMerge:[104],requiredContexts:[1455],description:[1455],environment:[1455],task:[1455],payload:[1455],__typename:[1455]},CreateDeploymentPayload:{autoMerged:[104],clientMutationId:[1455],deployment:[407],__typename:[1455]},CreateDeploymentStatusInput:{clientMutationId:[1455],deploymentId:[605],state:[431],description:[1455],environment:[1455],environmentUrl:[1455],autoInactive:[104],logUrl:[1455],__typename:[1455]},CreateDeploymentStatusPayload:{clientMutationId:[1455],deploymentStatus:[428],__typename:[1455]},CreateDiscussionInput:{clientMutationId:[1455],repositoryId:[605],title:[1455],body:[1455],categoryId:[605],__typename:[1455]},CreateDiscussionPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},CreateEnterpriseOrganizationInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],profileName:[1455],billingEmail:[1455],adminLogins:[1455],__typename:[1455]},CreateEnterpriseOrganizationPayload:{clientMutationId:[1455],enterprise:[471],organization:[841],__typename:[1455]},CreateEnvironmentInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],__typename:[1455]},CreateEnvironmentPayload:{clientMutationId:[1455],environment:[543],__typename:[1455]},CreateIpAllowListEntryInput:{clientMutationId:[1455],ownerId:[605],allowListValue:[1455],name:[1455],isActive:[104],__typename:[1455]},CreateIpAllowListEntryPayload:{clientMutationId:[1455],ipAllowListEntry:[615],__typename:[1455]},CreateIssueFieldInput:{clientMutationId:[1455],ownerId:[605],name:[1455],description:[1455],dataType:[642],options:[653],visibility:[661],__typename:[1455]},CreateIssueFieldPayload:{clientMutationId:[1455],issueField:[662],__typename:[1455]},CreateIssueFieldValueInput:{clientMutationId:[1455],issueId:[605],issueField:[641],__typename:[1455]},CreateIssueFieldValuePayload:{clientMutationId:[1455],issue:[623],issueFieldValue:[657],__typename:[1455]},CreateIssueInput:{clientMutationId:[1455],repositoryId:[605],title:[1455],body:[1455],assigneeIds:[605],milestoneId:[605],labelIds:[605],projectIds:[605],projectV2Ids:[605],issueTemplate:[1455],issueTypeId:[605],parentIssueId:[605],issueFields:[641],agentAssignment:[62],__typename:[1455]},CreateIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},CreateIssueTypeInput:{clientMutationId:[1455],ownerId:[605],isEnabled:[104],name:[1455],description:[1455],color:[683],__typename:[1455]},CreateIssueTypePayload:{clientMutationId:[1455],issueType:[680],__typename:[1455]},CreateLabelInput:{clientMutationId:[1455],repositoryId:[605],color:[1455],name:[1455],description:[1455],__typename:[1455]},CreateLabelPayload:{clientMutationId:[1455],label:[690],__typename:[1455]},CreateLinkedBranchInput:{clientMutationId:[1455],issueId:[605],oid:[588],name:[1455],repositoryId:[605],__typename:[1455]},CreateLinkedBranchPayload:{clientMutationId:[1455],issue:[623],linkedBranch:[711],__typename:[1455]},CreateMigrationSourceInput:{clientMutationId:[1455],name:[1455],url:[1455],accessToken:[1455],type:[769],ownerId:[605],githubPat:[1455],__typename:[1455]},CreateMigrationSourcePayload:{clientMutationId:[1455],migrationSource:[768],__typename:[1455]},CreateProjectInput:{clientMutationId:[1455],ownerId:[605],name:[1455],body:[1455],template:[949],repositoryIds:[605],__typename:[1455]},CreateProjectPayload:{clientMutationId:[1455],project:[929],__typename:[1455]},CreateProjectV2FieldInput:{clientMutationId:[1455],projectId:[605],dataType:[956],name:[1455],singleSelectOptions:[1012],iterationConfiguration:[1001],__typename:[1455]},CreateProjectV2FieldPayload:{clientMutationId:[1455],projectV2Field:[961],__typename:[1455]},CreateProjectV2Input:{clientMutationId:[1455],ownerId:[605],title:[1455],repositoryId:[605],teamId:[605],__typename:[1455]},CreateProjectV2IssueFieldInput:{clientMutationId:[1455],projectId:[605],issueFieldId:[605],__typename:[1455]},CreateProjectV2IssueFieldPayload:{clientMutationId:[1455],projectV2Field:[961],__typename:[1455]},CreateProjectV2Payload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},CreateProjectV2StatusUpdateInput:{clientMutationId:[1455],projectId:[605],startDate:[329],targetDate:[329],status:[1025],body:[1455],__typename:[1455]},CreateProjectV2StatusUpdatePayload:{clientMutationId:[1455],statusUpdate:[1021],__typename:[1455]},CreatePullRequestInput:{clientMutationId:[1455],repositoryId:[605],baseRefName:[1455],headRefName:[1455],headRepositoryId:[605],title:[1455],body:[1455],maintainerCanModify:[104],draft:[104],__typename:[1455]},CreatePullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},CreateRefInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],oid:[588],__typename:[1455]},CreateRefPayload:{clientMutationId:[1455],ref:[1113],__typename:[1455]},CreateRepositoryCustomPropertyInput:{clientMutationId:[1455],sourceId:[605],propertyName:[1455],description:[1455],allowedValues:[1455],valueType:[327],required:[104],defaultValue:[1455],regex:[1455],valuesEditableBy:[1223],requireExplicitValues:[104],__typename:[1455]},CreateRepositoryCustomPropertyPayload:{clientMutationId:[1455],repositoryCustomProperty:[1217],__typename:[1455]},CreateRepositoryInput:{clientMutationId:[1455],name:[1455],ownerId:[605],description:[1455],visibility:[1279],template:[104],homepageUrl:[1518],hasWikiEnabled:[104],hasIssuesEnabled:[104],teamId:[605],__typename:[1455]},CreateRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},CreateRepositoryRulesetInput:{clientMutationId:[1455],sourceId:[605],name:[1455],target:[1274],rules:[1262],conditions:[1259],enforcement:[1332],bypassActors:[1271],__typename:[1455]},CreateRepositoryRulesetPayload:{clientMutationId:[1455],ruleset:[1266],__typename:[1455]},CreateSponsorsListingInput:{clientMutationId:[1455],sponsorableLogin:[1455],fiscalHostLogin:[1455],fiscallyHostedProjectProfileUrl:[1455],billingCountryOrRegionCode:[1406],residenceCountryOrRegionCode:[1406],contactEmail:[1455],fullDescription:[1455],__typename:[1455]},CreateSponsorsListingPayload:{clientMutationId:[1455],sponsorsListing:[1409],__typename:[1455]},CreateSponsorsTierInput:{clientMutationId:[1455],sponsorableId:[605],sponsorableLogin:[1455],amount:[609],isRecurring:[104],repositoryId:[605],repositoryOwnerLogin:[1455],repositoryName:[1455],welcomeMessage:[1455],description:[1455],publish:[104],__typename:[1455]},CreateSponsorsTierPayload:{clientMutationId:[1455],sponsorsTier:[1413],__typename:[1455]},CreateSponsorshipInput:{clientMutationId:[1455],sponsorId:[605],sponsorLogin:[1455],sponsorableId:[605],sponsorableLogin:[1455],tierId:[605],amount:[609],isRecurring:[104],receiveEmails:[104],privacyLevel:[1430],__typename:[1455]},CreateSponsorshipPayload:{clientMutationId:[1455],sponsorship:[1419],__typename:[1455]},CreateSponsorshipsInput:{clientMutationId:[1455],sponsorLogin:[1455],sponsorships:[115],receiveEmails:[104],privacyLevel:[1430],recurring:[104],__typename:[1455]},CreateSponsorshipsPayload:{clientMutationId:[1455],sponsorables:[1393],__typename:[1455]},CreateUserListInput:{clientMutationId:[1455],name:[1455],description:[1455],isPrivate:[104],__typename:[1455]},CreateUserListPayload:{clientMutationId:[1455],list:[1706],viewer:[1697],__typename:[1455]},CreatedCommitContribution:{commitCount:[609],isRestricted:[104],occurredAt:[330],repository:[1207],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},CreatedCommitContributionConnection:{edges:[307],nodes:[305],pageInfo:[892],totalCount:[609],__typename:[1455]},CreatedCommitContributionEdge:{cursor:[1455],node:[305],__typename:[1455]},CreatedIssueContribution:{isRestricted:[104],issue:[623],occurredAt:[330],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},CreatedIssueContributionConnection:{edges:[310],nodes:[308],pageInfo:[892],totalCount:[609],__typename:[1455]},CreatedIssueContributionEdge:{cursor:[1455],node:[308],__typename:[1455]},CreatedIssueOrRestrictedContribution:{on_CreatedIssueContribution:[308],on_RestrictedContribution:[1311],on_Contribution:[216],__typename:[1455]},CreatedPullRequestContribution:{isRestricted:[104],occurredAt:[330],pullRequest:[1046],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},CreatedPullRequestContributionConnection:{edges:[314],nodes:[312],pageInfo:[892],totalCount:[609],__typename:[1455]},CreatedPullRequestContributionEdge:{cursor:[1455],node:[312],__typename:[1455]},CreatedPullRequestOrRestrictedContribution:{on_CreatedPullRequestContribution:[312],on_RestrictedContribution:[1311],on_Contribution:[216],__typename:[1455]},CreatedPullRequestReviewContribution:{isRestricted:[104],occurredAt:[330],pullRequest:[1046],pullRequestReview:[1065],repository:[1207],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},CreatedPullRequestReviewContributionConnection:{edges:[318],nodes:[316],pageInfo:[892],totalCount:[609],__typename:[1455]},CreatedPullRequestReviewContributionEdge:{cursor:[1455],node:[316],__typename:[1455]},CreatedRepositoryContribution:{isRestricted:[104],occurredAt:[330],repository:[1207],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},CreatedRepositoryContributionConnection:{edges:[321],nodes:[319],pageInfo:[892],totalCount:[609],__typename:[1455]},CreatedRepositoryContributionEdge:{cursor:[1455],node:[319],__typename:[1455]},CreatedRepositoryOrRestrictedContribution:{on_CreatedRepositoryContribution:[319],on_RestrictedContribution:[1311],on_Contribution:[216],__typename:[1455]},CrossReferencedEvent:{actor:[12],createdAt:[330],id:[605],isCrossRepository:[104],referencedAt:[330],resourcePath:[1518],source:[1123],target:[1123],url:[1518],willCloseTarget:[104],__typename:[1455]},CustomPropertySource:{on_Enterprise:[471],on_Organization:[841],on_Node:[788],on_Actor:[12],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},CustomPropertyValue:{},CustomPropertyValueInput:{propertyName:[1455],value:[325],__typename:[1455]},CustomPropertyValueType:{},CvssSeverities:{cvssV3:[123],cvssV4:[123],__typename:[1455]},Date:{},DateTime:{},DeclineTopicSuggestionInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],reason:[1508],__typename:[1455]},DeclineTopicSuggestionPayload:{clientMutationId:[1455],topic:[1506],__typename:[1455]},DefaultRepositoryPermissionField:{},Deletable:{viewerCanDelete:[104],on_CommitComment:[195],on_Discussion:[438],on_DiscussionComment:[443],on_GistComment:[574],on_Issue:[623],on_IssueComment:[625],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],__typename:[1455]},DeleteBranchProtectionRuleInput:{clientMutationId:[1455],branchProtectionRuleId:[605],__typename:[1455]},DeleteBranchProtectionRulePayload:{clientMutationId:[1455],__typename:[1455]},DeleteDeploymentInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteDeploymentPayload:{clientMutationId:[1455],__typename:[1455]},DeleteDiscussionCommentInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteDiscussionCommentPayload:{clientMutationId:[1455],comment:[443],__typename:[1455]},DeleteDiscussionInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteDiscussionPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},DeleteEnvironmentInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteEnvironmentPayload:{clientMutationId:[1455],__typename:[1455]},DeleteIpAllowListEntryInput:{clientMutationId:[1455],ipAllowListEntryId:[605],__typename:[1455]},DeleteIpAllowListEntryPayload:{clientMutationId:[1455],ipAllowListEntry:[615],__typename:[1455]},DeleteIssueCommentInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteIssueCommentPayload:{clientMutationId:[1455],__typename:[1455]},DeleteIssueFieldInput:{clientMutationId:[1455],fieldId:[605],__typename:[1455]},DeleteIssueFieldPayload:{clientMutationId:[1455],issueField:[662],__typename:[1455]},DeleteIssueFieldValueInput:{clientMutationId:[1455],issueId:[605],fieldId:[605],__typename:[1455]},DeleteIssueFieldValuePayload:{clientMutationId:[1455],issue:[623],success:[104],__typename:[1455]},DeleteIssueInput:{clientMutationId:[1455],issueId:[605],__typename:[1455]},DeleteIssuePayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},DeleteIssueTypeInput:{clientMutationId:[1455],issueTypeId:[605],__typename:[1455]},DeleteIssueTypePayload:{clientMutationId:[1455],deletedIssueTypeId:[605],__typename:[1455]},DeleteLabelInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteLabelPayload:{clientMutationId:[1455],__typename:[1455]},DeleteLinkedBranchInput:{clientMutationId:[1455],linkedBranchId:[605],__typename:[1455]},DeleteLinkedBranchPayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},DeletePackageVersionInput:{clientMutationId:[1455],packageVersionId:[605],__typename:[1455]},DeletePackageVersionPayload:{clientMutationId:[1455],success:[104],__typename:[1455]},DeleteProjectCardInput:{clientMutationId:[1455],cardId:[605],__typename:[1455]},DeleteProjectCardPayload:{clientMutationId:[1455],column:[937],deletedCardId:[605],__typename:[1455]},DeleteProjectColumnInput:{clientMutationId:[1455],columnId:[605],__typename:[1455]},DeleteProjectColumnPayload:{clientMutationId:[1455],deletedColumnId:[605],project:[929],__typename:[1455]},DeleteProjectInput:{clientMutationId:[1455],projectId:[605],__typename:[1455]},DeleteProjectPayload:{clientMutationId:[1455],owner:[946],__typename:[1455]},DeleteProjectV2FieldInput:{clientMutationId:[1455],fieldId:[605],__typename:[1455]},DeleteProjectV2FieldPayload:{clientMutationId:[1455],projectV2Field:[961],__typename:[1455]},DeleteProjectV2Input:{clientMutationId:[1455],projectId:[605],__typename:[1455]},DeleteProjectV2ItemInput:{clientMutationId:[1455],projectId:[605],itemId:[605],__typename:[1455]},DeleteProjectV2ItemPayload:{clientMutationId:[1455],deletedItemId:[605],__typename:[1455]},DeleteProjectV2Payload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},DeleteProjectV2StatusUpdateInput:{clientMutationId:[1455],statusUpdateId:[605],__typename:[1455]},DeleteProjectV2StatusUpdatePayload:{clientMutationId:[1455],deletedStatusUpdateId:[605],projectV2:[950],__typename:[1455]},DeleteProjectV2WorkflowInput:{clientMutationId:[1455],workflowId:[605],__typename:[1455]},DeleteProjectV2WorkflowPayload:{clientMutationId:[1455],deletedWorkflowId:[605],projectV2:[950],__typename:[1455]},DeletePullRequestReviewCommentInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeletePullRequestReviewCommentPayload:{clientMutationId:[1455],pullRequestReview:[1065],pullRequestReviewComment:[1066],__typename:[1455]},DeletePullRequestReviewInput:{clientMutationId:[1455],pullRequestReviewId:[605],__typename:[1455]},DeletePullRequestReviewPayload:{clientMutationId:[1455],pullRequestReview:[1065],__typename:[1455]},DeleteRefInput:{clientMutationId:[1455],refId:[605],__typename:[1455]},DeleteRefPayload:{clientMutationId:[1455],__typename:[1455]},DeleteRepositoryCustomPropertyInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteRepositoryCustomPropertyPayload:{clientMutationId:[1455],repositoryCustomProperty:[1217],__typename:[1455]},DeleteRepositoryRulesetInput:{clientMutationId:[1455],repositoryRulesetId:[605],__typename:[1455]},DeleteRepositoryRulesetPayload:{clientMutationId:[1455],__typename:[1455]},DeleteUserListInput:{clientMutationId:[1455],listId:[605],__typename:[1455]},DeleteUserListPayload:{clientMutationId:[1455],user:[1697],__typename:[1455]},DeleteVerifiableDomainInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DeleteVerifiableDomainPayload:{clientMutationId:[1455],owner:[1727],__typename:[1455]},DemilestonedEvent:{actor:[12],createdAt:[330],id:[605],milestoneTitle:[1455],subject:[774],__typename:[1455]},DependabotUpdate:{error:[395],pullRequest:[1046],repository:[1207],__typename:[1455]},DependabotUpdateError:{body:[1455],errorType:[1455],title:[1455],__typename:[1455]},DependencyGraphDependency:{hasDependencies:[104],packageLabel:[1455],packageManager:[1455],packageName:[1455],packageUrl:[1518],relationship:[1455],repository:[1207],requirements:[1455],__typename:[1455]},DependencyGraphDependencyConnection:{edges:[398],nodes:[396],pageInfo:[892],totalCount:[609],__typename:[1455]},DependencyGraphDependencyEdge:{cursor:[1455],node:[396],__typename:[1455]},DependencyGraphEcosystem:{},DependencyGraphManifest:{blobPath:[1455],dependencies:[397,{after:[1455],before:[1455],first:[609],last:[609]}],dependenciesCount:[609],exceedsMaxSize:[104],filename:[1455],id:[605],parseable:[104],repository:[1207],__typename:[1455]},DependencyGraphManifestConnection:{edges:[402],nodes:[400],pageInfo:[892],totalCount:[609],__typename:[1455]},DependencyGraphManifestEdge:{cursor:[1455],node:[400],__typename:[1455]},DeployKey:{createdAt:[330],enabled:[104],id:[605],key:[1455],readOnly:[104],title:[1455],verified:[104],__typename:[1455]},DeployKeyConnection:{edges:[405],nodes:[403],pageInfo:[892],totalCount:[609],__typename:[1455]},DeployKeyEdge:{cursor:[1455],node:[403],__typename:[1455]},DeployedEvent:{actor:[12],createdAt:[330],databaseId:[609],deployment:[407],id:[605],pullRequest:[1046],ref:[1113],__typename:[1455]},Deployment:{commit:[191],commitOid:[1455],createdAt:[330],creator:[12],databaseId:[609],description:[1455],environment:[1455],id:[605],latestEnvironment:[1455],latestStatus:[428],originalEnvironment:[1455],payload:[1455],ref:[1113],repository:[1207],state:[427],statuses:[429,{after:[1455],before:[1455],first:[609],last:[609]}],task:[1455],updatedAt:[330],__typename:[1455]},DeploymentConnection:{edges:[409],nodes:[407],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentEdge:{cursor:[1455],node:[407],__typename:[1455]},DeploymentEnvironmentChangedEvent:{actor:[12],createdAt:[330],deploymentStatus:[428],id:[605],pullRequest:[1046],__typename:[1455]},DeploymentOrder:{field:[412],direction:[796],__typename:[1455]},DeploymentOrderField:{},DeploymentProtectionRule:{databaseId:[609],preventSelfReview:[104],reviewers:[425,{after:[1455],before:[1455],first:[609],last:[609]}],timeout:[609],type:[416],__typename:[1455]},DeploymentProtectionRuleConnection:{edges:[415],nodes:[413],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentProtectionRuleEdge:{cursor:[1455],node:[413],__typename:[1455]},DeploymentProtectionRuleType:{},DeploymentRequest:{currentUserCanApprove:[104],environment:[543],reviewers:[425,{after:[1455],before:[1455],first:[609],last:[609]}],waitTimer:[609],waitTimerStartedAt:[330],__typename:[1455]},DeploymentRequestConnection:{edges:[419],nodes:[417],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentRequestEdge:{cursor:[1455],node:[417],__typename:[1455]},DeploymentReview:{comment:[1455],databaseId:[609],environments:[544,{after:[1455],before:[1455],first:[609],last:[609]}],id:[605],state:[423],user:[1697],__typename:[1455]},DeploymentReviewConnection:{edges:[422],nodes:[420],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentReviewEdge:{cursor:[1455],node:[420],__typename:[1455]},DeploymentReviewState:{},DeploymentReviewer:{on_Team:[1476],on_User:[1697],on_MemberStatusable:[742],on_Node:[788],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},DeploymentReviewerConnection:{edges:[426],nodes:[424],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentReviewerEdge:{cursor:[1455],node:[424],__typename:[1455]},DeploymentState:{},DeploymentStatus:{createdAt:[330],creator:[12],deployment:[407],description:[1455],environment:[1455],environmentUrl:[1518],id:[605],logUrl:[1518],state:[431],updatedAt:[330],__typename:[1455]},DeploymentStatusConnection:{edges:[430],nodes:[428],pageInfo:[892],totalCount:[609],__typename:[1455]},DeploymentStatusEdge:{cursor:[1455],node:[428],__typename:[1455]},DeploymentStatusState:{},DequeuePullRequestInput:{clientMutationId:[1455],id:[605],__typename:[1455]},DequeuePullRequestPayload:{clientMutationId:[1455],mergeQueueEntry:[755],__typename:[1455]},DiffSide:{},DisablePullRequestAutoMergeInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},DisablePullRequestAutoMergePayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},DisconnectedEvent:{actor:[12],createdAt:[330],id:[605],isCrossRepository:[104],source:[1123],subject:[1123],__typename:[1455]},Discussion:{activeLockReason:[716],answer:[443],answerChosenAt:[330],answerChosenBy:[12],author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],category:[439],closed:[104],closedAt:[330],comments:[444,{after:[1455],before:[1455],first:[609],last:[609]}],createdAt:[330],createdViaEmail:[104],databaseId:[609],editor:[12],id:[605],includesCreatedEdit:[104],isAnswered:[104],labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609]}],lastEditedAt:[330],locked:[104],number:[609],poll:[450],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],stateReason:[457],title:[1455],updatedAt:[330],upvoteCount:[609],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanClose:[104],viewerCanDelete:[104],viewerCanLabel:[104],viewerCanReact:[104],viewerCanReopen:[104],viewerCanSubscribe:[104],viewerCanUpdate:[104],viewerCanUpvote:[104],viewerDidAuthor:[104],viewerHasUpvoted:[104],viewerSubscription:[1468],__typename:[1455]},DiscussionCategory:{createdAt:[330],description:[1455],emoji:[1455],emojiHTML:[599],id:[605],isAnswerable:[104],name:[1455],repository:[1207],slug:[1455],updatedAt:[330],__typename:[1455]},DiscussionCategoryConnection:{edges:[441],nodes:[439],pageInfo:[892],totalCount:[609],__typename:[1455]},DiscussionCategoryEdge:{cursor:[1455],node:[439],__typename:[1455]},DiscussionCloseReason:{},DiscussionComment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],createdAt:[330],createdViaEmail:[104],databaseId:[609],deletedAt:[330],discussion:[438],editor:[12],id:[605],includesCreatedEdit:[104],isAnswer:[104],isMinimized:[104],lastEditedAt:[330],minimizedReason:[1455],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],replies:[444,{after:[1455],before:[1455],first:[609],last:[609]}],replyTo:[443],resourcePath:[1518],updatedAt:[330],upvoteCount:[609],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMarkAsAnswer:[104],viewerCanMinimize:[104],viewerCanReact:[104],viewerCanUnmarkAsAnswer:[104],viewerCanUnminimize:[104],viewerCanUpdate:[104],viewerCanUpvote:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],viewerHasUpvoted:[104],__typename:[1455]},DiscussionCommentConnection:{edges:[445],nodes:[443],pageInfo:[892],totalCount:[609],__typename:[1455]},DiscussionCommentEdge:{cursor:[1455],node:[443],__typename:[1455]},DiscussionConnection:{edges:[447],nodes:[438],pageInfo:[892],totalCount:[609],__typename:[1455]},DiscussionEdge:{cursor:[1455],node:[438],__typename:[1455]},DiscussionOrder:{field:[449],direction:[796],__typename:[1455]},DiscussionOrderField:{},DiscussionPoll:{discussion:[438],id:[605],options:[452,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[454]}],question:[1455],totalVoteCount:[609],viewerCanVote:[104],viewerHasVoted:[104],__typename:[1455]},DiscussionPollOption:{id:[605],option:[1455],poll:[450],totalVoteCount:[609],viewerHasVoted:[104],__typename:[1455]},DiscussionPollOptionConnection:{edges:[453],nodes:[451],pageInfo:[892],totalCount:[609],__typename:[1455]},DiscussionPollOptionEdge:{cursor:[1455],node:[451],__typename:[1455]},DiscussionPollOptionOrder:{field:[455],direction:[796],__typename:[1455]},DiscussionPollOptionOrderField:{},DiscussionState:{},DiscussionStateReason:{},DismissPullRequestReviewInput:{clientMutationId:[1455],pullRequestReviewId:[605],message:[1455],__typename:[1455]},DismissPullRequestReviewPayload:{clientMutationId:[1455],pullRequestReview:[1065],__typename:[1455]},DismissReason:{},DismissRepositoryVulnerabilityAlertInput:{clientMutationId:[1455],repositoryVulnerabilityAlertId:[605],dismissReason:[460],__typename:[1455]},DismissRepositoryVulnerabilityAlertPayload:{clientMutationId:[1455],repositoryVulnerabilityAlert:[1282],__typename:[1455]},DraftIssue:{assignees:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],body:[1455],bodyHTML:[599],bodyText:[1455],createdAt:[330],creator:[12],id:[605],projectV2Items:[973,{after:[1455],before:[1455],first:[609],last:[609]}],projectsV2:[955,{after:[1455],before:[1455],first:[609],last:[609]}],title:[1455],updatedAt:[330],__typename:[1455]},DraftPullRequestReviewComment:{path:[1455],position:[609],body:[1455],__typename:[1455]},DraftPullRequestReviewThread:{path:[1455],line:[609],side:[434],startLine:[609],startSide:[434],body:[1455],__typename:[1455]},EPSS:{percentage:[563],percentile:[563],__typename:[1455]},EnablePullRequestAutoMergeInput:{clientMutationId:[1455],pullRequestId:[605],commitHeadline:[1455],commitBody:[1455],mergeMethod:[1060],authorEmail:[1455],expectedHeadOid:[588],__typename:[1455]},EnablePullRequestAutoMergePayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},EnqueuePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],jump:[104],expectedHeadOid:[588],__typename:[1455]},EnqueuePullRequestPayload:{clientMutationId:[1455],mergeQueueEntry:[755],__typename:[1455]},Enterprise:{announcementBanner:[64],avatarUrl:[1518,{size:[609]}],billingEmail:[1455],billingInfo:[482],createdAt:[330],databaseId:[609],description:[1455],descriptionHTML:[599],id:[605],location:[1455],members:[493,{organizationLogins:[1455,`[String!]`],query:[1455],orderBy:[500],role:[541],deployment:[542],hasTwoFactorEnabled:[104],twoFactorMethodSecurity:[1517],after:[1455],before:[1455],first:[609],last:[609]}],name:[1455],organizations:[846,{query:[1455],viewerOrganizationRole:[1331],orderBy:[864],after:[1455],before:[1455],first:[609],last:[609]}],ownerInfo:[511],readme:[1455],readmeHTML:[599],repositoryCustomProperties:[1218,{after:[1455],before:[1455],first:[609],last:[609]}],repositoryCustomProperty:[1217,{propertyName:[1455,`String!`]}],resourcePath:[1518],ruleset:[1266,{databaseId:[609,`Int!`]}],rulesets:[1272,{after:[1455],before:[1455],first:[609],last:[609]}],securityContactEmail:[1455],slug:[1455],updatedAt:[330],url:[1518],userNamespaceRepositories:[1714,{query:[1455],orderBy:[1249],after:[1455],before:[1455],first:[609],last:[609]}],viewerIsAdmin:[104],websiteUrl:[1518],__typename:[1455]},EnterpriseAdministratorConnection:{edges:[473],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseAdministratorEdge:{cursor:[1455],node:[1697],role:[479],__typename:[1455]},EnterpriseAdministratorInvitation:{createdAt:[330],email:[1455],enterprise:[471],id:[605],invitee:[1697],inviter:[1697],role:[479],__typename:[1455]},EnterpriseAdministratorInvitationConnection:{edges:[476],nodes:[474],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseAdministratorInvitationEdge:{cursor:[1455],node:[474],__typename:[1455]},EnterpriseAdministratorInvitationOrder:{field:[478],direction:[796],__typename:[1455]},EnterpriseAdministratorInvitationOrderField:{},EnterpriseAdministratorRole:{},EnterpriseAllowPrivateRepositoryForkingPolicyValue:{},EnterpriseAuditEntryData:{enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_OrgInviteToBusinessAuditEntry:[814],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],__typename:[1455]},EnterpriseBillingInfo:{allLicensableUsersCount:[609],assetPacks:[609],bandwidthQuota:[563],bandwidthUsage:[563],bandwidthUsagePercentage:[609],storageQuota:[563],storageUsage:[563],storageUsagePercentage:[609],totalAvailableLicenses:[609],totalLicenses:[609],__typename:[1455]},EnterpriseConnection:{edges:[486],nodes:[471],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseDefaultRepositoryPermissionSettingValue:{},EnterpriseDisallowedMethodsSettingValue:{},EnterpriseEdge:{cursor:[1455],node:[471],__typename:[1455]},EnterpriseEnabledDisabledSettingValue:{},EnterpriseEnabledSettingValue:{},EnterpriseFailedInvitationConnection:{edges:[490],nodes:[851],pageInfo:[892],totalCount:[609],totalUniqueUserCount:[609],__typename:[1455]},EnterpriseFailedInvitationEdge:{cursor:[1455],node:[851],__typename:[1455]},EnterpriseIdentityProvider:{digestMethod:[1336],enterprise:[471],externalIdentities:[551,{membersOnly:[104],login:[1455],userName:[1455],after:[1455],before:[1455],first:[609],last:[609]}],id:[605],idpCertificate:[1744],issuer:[1455],recoveryCodes:[1455],signatureMethod:[1337],ssoUrl:[1518],__typename:[1455]},EnterpriseMember:{on_EnterpriseUserAccount:[540],on_User:[1697],on_Actor:[12],on_Node:[788],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},EnterpriseMemberConnection:{edges:[494],nodes:[492],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseMemberEdge:{cursor:[1455],node:[492],__typename:[1455]},EnterpriseMemberInvitation:{createdAt:[330],email:[1455],enterprise:[471],id:[605],invitee:[1697],inviter:[1697],__typename:[1455]},EnterpriseMemberInvitationConnection:{edges:[497],nodes:[495],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseMemberInvitationEdge:{cursor:[1455],node:[495],__typename:[1455]},EnterpriseMemberInvitationOrder:{field:[499],direction:[796],__typename:[1455]},EnterpriseMemberInvitationOrderField:{},EnterpriseMemberOrder:{field:[501],direction:[796],__typename:[1455]},EnterpriseMemberOrderField:{},EnterpriseMembersCanCreateRepositoriesSettingValue:{},EnterpriseMembersCanMakePurchasesSettingValue:{},EnterpriseMembershipType:{},EnterpriseOrder:{field:[506],direction:[796],__typename:[1455]},EnterpriseOrderField:{},EnterpriseOrganizationMembershipConnection:{edges:[508],nodes:[841],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseOrganizationMembershipEdge:{cursor:[1455],node:[841],role:[541],__typename:[1455]},EnterpriseOutsideCollaboratorConnection:{edges:[510],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseOutsideCollaboratorEdge:{cursor:[1455],node:[1697],repositories:[515,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1249]}],__typename:[1455]},EnterpriseOwnerInfo:{admins:[472,{organizationLogins:[1455,`[String!]`],query:[1455],role:[479],orderBy:[500],hasTwoFactorEnabled:[104],twoFactorMethodSecurity:[1517],after:[1455],before:[1455],first:[609],last:[609]}],affiliatedUsersWithTwoFactorDisabled:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],affiliatedUsersWithTwoFactorDisabledExist:[104],allowPrivateRepositoryForkingSetting:[487],allowPrivateRepositoryForkingSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],allowPrivateRepositoryForkingSettingPolicyValue:[480],defaultRepositoryPermissionSetting:[484],defaultRepositoryPermissionSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[333,`DefaultRepositoryPermissionField!`],orderBy:[864]}],domains:[1723,{after:[1455],before:[1455],first:[609],last:[609],isVerified:[104],isApproved:[104],orderBy:[1725]}],enterpriseServerInstallations:[518,{after:[1455],before:[1455],first:[609],last:[609],connectedOnly:[104],orderBy:[522]}],failedInvitations:[489,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],ipAllowListEnabledSetting:[614],ipAllowListEntries:[616,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[618]}],ipAllowListForInstalledAppsEnabledSetting:[620],ipAllowListUserLevelEnforcementEnabledSetting:[622],isUpdatingDefaultRepositoryPermission:[104],isUpdatingTwoFactorRequirement:[104],membersCanChangeRepositoryVisibilitySetting:[487],membersCanChangeRepositoryVisibilitySettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],membersCanCreateInternalRepositoriesSetting:[104],membersCanCreatePrivateRepositoriesSetting:[104],membersCanCreatePublicRepositoriesSetting:[104],membersCanCreateRepositoriesSetting:[502],membersCanCreateRepositoriesSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[860,`OrganizationMembersCanCreateRepositoriesSettingValue!`],orderBy:[864]}],membersCanDeleteIssuesSetting:[487],membersCanDeleteIssuesSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],membersCanDeleteRepositoriesSetting:[487],membersCanDeleteRepositoriesSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],membersCanInviteCollaboratorsSetting:[487],membersCanInviteCollaboratorsSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],membersCanMakePurchasesSetting:[503],membersCanUpdateProtectedBranchesSetting:[487],membersCanUpdateProtectedBranchesSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],membersCanViewDependencyInsightsSetting:[487],membersCanViewDependencyInsightsSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],notificationDeliveryRestrictionEnabledSetting:[789],oidcProvider:[790],organizationProjectsSetting:[487],organizationProjectsSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],outsideCollaborators:[509,{login:[1455],query:[1455],orderBy:[500],visibility:[1279],hasTwoFactorEnabled:[104],twoFactorMethodSecurity:[1517],organizationLogins:[1455,`[String!]`],after:[1455],before:[1455],first:[609],last:[609]}],pendingAdminInvitations:[475,{query:[1455],orderBy:[477],role:[479],after:[1455],before:[1455],first:[609],last:[609]}],pendingCollaboratorInvitations:[1235,{query:[1455],orderBy:[1237],after:[1455],before:[1455],first:[609],last:[609]}],pendingMemberInvitations:[512,{query:[1455],organizationLogins:[1455,`[String!]`],invitationSource:[855],after:[1455],before:[1455],first:[609],last:[609]}],pendingUnaffiliatedMemberInvitations:[496,{query:[1455],orderBy:[498],after:[1455],before:[1455],first:[609],last:[609]}],repositoryDeployKeySetting:[487],repositoryDeployKeySettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],repositoryProjectsSetting:[487],repositoryProjectsSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],samlIdentityProvider:[491],samlIdentityProviderSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[606,`IdentityProviderConfigurationState!`],orderBy:[864]}],supportEntitlements:[493,{orderBy:[500],after:[1455],before:[1455],first:[609],last:[609]}],teamDiscussionsSetting:[487],twoFactorDisallowedMethodsSetting:[485],twoFactorRequiredSetting:[488],twoFactorRequiredSettingOrganizations:[846,{after:[1455],before:[1455],first:[609],last:[609],value:[104,`Boolean!`],orderBy:[864]}],__typename:[1455]},EnterprisePendingMemberInvitationConnection:{edges:[513],nodes:[851],pageInfo:[892],totalCount:[609],totalUniqueUserCount:[609],__typename:[1455]},EnterprisePendingMemberInvitationEdge:{cursor:[1455],node:[851],__typename:[1455]},EnterpriseRepositoryInfo:{id:[605],isPrivate:[104],name:[1455],nameWithOwner:[1455],__typename:[1455]},EnterpriseRepositoryInfoConnection:{edges:[516],nodes:[514],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseRepositoryInfoEdge:{cursor:[1455],node:[514],__typename:[1455]},EnterpriseServerInstallation:{createdAt:[330],customerName:[1455],hostName:[1455],id:[605],isConnected:[104],updatedAt:[330],userAccounts:[525,{orderBy:[532],after:[1455],before:[1455],first:[609],last:[609]}],userAccountsUploads:[535,{orderBy:[537],after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},EnterpriseServerInstallationConnection:{edges:[519],nodes:[517],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseServerInstallationEdge:{cursor:[1455],node:[517],__typename:[1455]},EnterpriseServerInstallationMembershipConnection:{edges:[521],nodes:[517],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseServerInstallationMembershipEdge:{cursor:[1455],node:[517],role:[541],__typename:[1455]},EnterpriseServerInstallationOrder:{field:[523],direction:[796],__typename:[1455]},EnterpriseServerInstallationOrderField:{},EnterpriseServerUserAccount:{createdAt:[330],emails:[528,{orderBy:[530],after:[1455],before:[1455],first:[609],last:[609]}],enterpriseServerInstallation:[517],id:[605],isSiteAdmin:[104],login:[1455],profileName:[1455],remoteCreatedAt:[330],remoteUserId:[609],updatedAt:[330],__typename:[1455]},EnterpriseServerUserAccountConnection:{edges:[526],nodes:[524],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseServerUserAccountEdge:{cursor:[1455],node:[524],__typename:[1455]},EnterpriseServerUserAccountEmail:{createdAt:[330],email:[1455],id:[605],isPrimary:[104],updatedAt:[330],userAccount:[524],__typename:[1455]},EnterpriseServerUserAccountEmailConnection:{edges:[529],nodes:[527],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseServerUserAccountEmailEdge:{cursor:[1455],node:[527],__typename:[1455]},EnterpriseServerUserAccountEmailOrder:{field:[531],direction:[796],__typename:[1455]},EnterpriseServerUserAccountEmailOrderField:{},EnterpriseServerUserAccountOrder:{field:[533],direction:[796],__typename:[1455]},EnterpriseServerUserAccountOrderField:{},EnterpriseServerUserAccountsUpload:{createdAt:[330],enterprise:[471],enterpriseServerInstallation:[517],id:[605],name:[1455],syncState:[539],updatedAt:[330],__typename:[1455]},EnterpriseServerUserAccountsUploadConnection:{edges:[536],nodes:[534],pageInfo:[892],totalCount:[609],__typename:[1455]},EnterpriseServerUserAccountsUploadEdge:{cursor:[1455],node:[534],__typename:[1455]},EnterpriseServerUserAccountsUploadOrder:{field:[538],direction:[796],__typename:[1455]},EnterpriseServerUserAccountsUploadOrderField:{},EnterpriseServerUserAccountsUploadSyncState:{},EnterpriseUserAccount:{avatarUrl:[1518,{size:[609]}],createdAt:[330],enterprise:[471],enterpriseInstallations:[520,{query:[1455],orderBy:[522],role:[541],after:[1455],before:[1455],first:[609],last:[609]}],id:[605],login:[1455],name:[1455],organizations:[507,{query:[1455],orderBy:[864],role:[541],after:[1455],before:[1455],first:[609],last:[609]}],resourcePath:[1518],updatedAt:[330],url:[1518],user:[1697],__typename:[1455]},EnterpriseUserAccountMembershipRole:{},EnterpriseUserDeployment:{},Environment:{databaseId:[609],id:[605],isPinned:[104],latestCompletedDeployment:[407],name:[1455],pinnedPosition:[609],protectionRules:[414,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},EnvironmentConnection:{edges:[545],nodes:[543],pageInfo:[892],totalCount:[609],__typename:[1455]},EnvironmentEdge:{cursor:[1455],node:[543],__typename:[1455]},EnvironmentOrderField:{},EnvironmentPinnedFilterField:{},Environments:{field:[546],direction:[796],__typename:[1455]},ExternalIdentity:{guid:[1455],id:[605],organizationInvitation:[851],samlIdentity:[553],scimIdentity:[554],user:[1697],__typename:[1455]},ExternalIdentityAttribute:{metadata:[1455],name:[1455],value:[1455],__typename:[1455]},ExternalIdentityConnection:{edges:[552],nodes:[549],pageInfo:[892],totalCount:[609],__typename:[1455]},ExternalIdentityEdge:{cursor:[1455],node:[549],__typename:[1455]},ExternalIdentitySamlAttributes:{attributes:[550],emails:[1705],familyName:[1455],givenName:[1455],groups:[1455],nameId:[1455],username:[1455],__typename:[1455]},ExternalIdentityScimAttributes:{emails:[1705],familyName:[1455],givenName:[1455],groups:[1455],username:[1455],__typename:[1455]},FileAddition:{path:[1455],contents:[92],__typename:[1455]},FileChanges:{deletions:[557],additions:[555],__typename:[1455]},FileDeletion:{path:[1455],__typename:[1455]},FileExtensionRestrictionParameters:{restrictedFileExtensions:[1455],__typename:[1455]},FileExtensionRestrictionParametersInput:{restrictedFileExtensions:[1455],__typename:[1455]},FilePathRestrictionParameters:{restrictedFilePaths:[1455],__typename:[1455]},FilePathRestrictionParametersInput:{restrictedFilePaths:[1455],__typename:[1455]},FileViewedState:{},Float:{},FollowOrganizationInput:{clientMutationId:[1455],organizationId:[605],__typename:[1455]},FollowOrganizationPayload:{clientMutationId:[1455],organization:[841],__typename:[1455]},FollowUserInput:{clientMutationId:[1455],userId:[605],__typename:[1455]},FollowUserPayload:{clientMutationId:[1455],user:[1697],__typename:[1455]},FollowerConnection:{edges:[1704],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},FollowingConnection:{edges:[1704],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},FundingLink:{platform:[571],url:[1518],__typename:[1455]},FundingPlatform:{},GenericHovercardContext:{message:[1455],octicon:[1455],__typename:[1455]},Gist:{comments:[575,{after:[1455],before:[1455],first:[609],last:[609]}],createdAt:[330],description:[1455],files:[579,{limit:[609],oid:[588]}],forks:[577,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[580]}],id:[605],isFork:[104],isPublic:[104],name:[1455],owner:[1251],pushedAt:[330],resourcePath:[1518],stargazerCount:[609],stargazers:[1436,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1434]}],updatedAt:[330],url:[1518],viewerHasStarred:[104],__typename:[1455]},GistComment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],createdAt:[330],createdViaEmail:[104],databaseId:[609],editor:[12],gist:[573],id:[605],includesCreatedEdit:[104],isMinimized:[104],lastEditedAt:[330],minimizedReason:[1455],publishedAt:[330],updatedAt:[330],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMinimize:[104],viewerCanUnminimize:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],__typename:[1455]},GistCommentConnection:{edges:[576],nodes:[574],pageInfo:[892],totalCount:[609],__typename:[1455]},GistCommentEdge:{cursor:[1455],node:[574],__typename:[1455]},GistConnection:{edges:[578],nodes:[573],pageInfo:[892],totalCount:[609],__typename:[1455]},GistEdge:{cursor:[1455],node:[573],__typename:[1455]},GistFile:{encodedName:[1455],encoding:[1455],extension:[1455],isImage:[104],isTruncated:[104],language:[697],name:[1455],size:[609],text:[1455,{truncate:[609]}],__typename:[1455]},GistOrder:{field:[581],direction:[796],__typename:[1455]},GistOrderField:{},GistPrivacy:{},GitActor:{avatarUrl:[1518,{size:[609]}],date:[593],email:[1455],name:[1455],user:[1697],__typename:[1455]},GitActorConnection:{edges:[585],nodes:[583],pageInfo:[892],totalCount:[609],__typename:[1455]},GitActorEdge:{cursor:[1455],node:[583],__typename:[1455]},GitHubMetadata:{gitHubServicesSha:[588],gitIpAddresses:[1455],githubEnterpriseImporterIpAddresses:[1455],hookIpAddresses:[1455],importerIpAddresses:[1455],isPasswordAuthenticationVerifiable:[104],pagesIpAddresses:[1455],__typename:[1455]},GitObject:{abbreviatedOid:[1455],commitResourcePath:[1518],commitUrl:[1518],id:[605],oid:[588],repository:[1207],on_Blob:[99],on_Commit:[191],on_Tag:[1473],on_Tree:[1515],__typename:[1455]},GitObjectID:{},GitRefname:{},GitSSHRemote:{},GitSignature:{email:[1455],isValid:[104],payload:[1455],signature:[1455],signer:[1697],state:[592],verifiedAt:[330],wasSignedByGitHub:[104],on_GpgSignature:[594],on_SmimeSignature:[1378],on_SshSignature:[1433],on_UnknownSignature:[1531],__typename:[1455]},GitSignatureState:{},GitTimestamp:{},GpgSignature:{email:[1455],isValid:[104],keyId:[1455],payload:[1455],signature:[1455],signer:[1697],state:[592],verifiedAt:[330],wasSignedByGitHub:[104],__typename:[1455]},GrantEnterpriseOrganizationsMigratorRoleInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],__typename:[1455]},GrantEnterpriseOrganizationsMigratorRolePayload:{clientMutationId:[1455],organizations:[846,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},GrantMigratorRoleInput:{clientMutationId:[1455],organizationId:[605],actor:[1455],actorType:[16],__typename:[1455]},GrantMigratorRolePayload:{clientMutationId:[1455],success:[104],__typename:[1455]},HTML:{},HeadRefDeletedEvent:{actor:[12],createdAt:[330],headRef:[1113],headRefName:[1455],id:[605],pullRequest:[1046],__typename:[1455]},HeadRefForcePushedEvent:{actor:[12],afterCommit:[191],beforeCommit:[191],createdAt:[330],id:[605],pullRequest:[1046],ref:[1113],__typename:[1455]},HeadRefRestoredEvent:{actor:[12],createdAt:[330],id:[605],pullRequest:[1046],__typename:[1455]},Hovercard:{contexts:[604],__typename:[1455]},HovercardContext:{message:[1455],octicon:[1455],on_GenericHovercardContext:[572],on_OrganizationTeamsHovercardContext:[870],on_OrganizationsHovercardContext:[871],on_ReviewStatusHovercardContext:[1326],on_ViewerHovercardContext:[1730],__typename:[1455]},ID:{},IdentityProviderConfigurationState:{},ImportProjectInput:{clientMutationId:[1455],ownerName:[1455],name:[1455],body:[1455],public:[104],columnImports:[940],__typename:[1455]},ImportProjectPayload:{clientMutationId:[1455],project:[929],__typename:[1455]},Int:{},InviteEnterpriseAdminInput:{clientMutationId:[1455],enterpriseId:[605],invitee:[1455],email:[1455],role:[479],__typename:[1455]},InviteEnterpriseAdminPayload:{clientMutationId:[1455],invitation:[474],__typename:[1455]},InviteEnterpriseMemberInput:{clientMutationId:[1455],enterpriseId:[605],invitee:[1455],email:[1455],__typename:[1455]},InviteEnterpriseMemberPayload:{clientMutationId:[1455],invitation:[495],__typename:[1455]},IpAllowListEnabledSettingValue:{},IpAllowListEntry:{allowListValue:[1455],createdAt:[330],id:[605],isActive:[104],name:[1455],owner:[621],updatedAt:[330],__typename:[1455]},IpAllowListEntryConnection:{edges:[617],nodes:[615],pageInfo:[892],totalCount:[609],__typename:[1455]},IpAllowListEntryEdge:{cursor:[1455],node:[615],__typename:[1455]},IpAllowListEntryOrder:{field:[619],direction:[796],__typename:[1455]},IpAllowListEntryOrderField:{},IpAllowListForInstalledAppsEnabledSettingValue:{},IpAllowListOwner:{on_App:[65],on_Enterprise:[471],on_Organization:[841],on_Node:[788],on_Actor:[12],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},IpAllowListUserLevelEnforcementEnabledSettingValue:{},Issue:{activeLockReason:[716],assignedActors:[79,{after:[1455],before:[1455],first:[609],last:[609]}],assignees:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],author:[12],authorAssociation:[188],blockedBy:[632,{orderBy:[635],after:[1455],before:[1455],first:[609],last:[609]}],blocking:[632,{orderBy:[635],after:[1455],before:[1455],first:[609],last:[609]}],body:[1455],bodyHTML:[599],bodyResourcePath:[1518],bodyText:[1455],bodyUrl:[1518],closed:[104],closedAt:[330],closedByPullRequestsReferences:[1056,{includeClosedPrs:[104],orderByState:[104],userLinkedOnly:[104],after:[1455],before:[1455],first:[609],last:[609]}],comments:[626,{orderBy:[628],after:[1455],before:[1455],first:[609],last:[609]}],createdAt:[330],createdViaEmail:[104],databaseId:[609],duplicateOf:[623],editor:[12],fullDatabaseId:[96],hovercard:[603,{includeNotificationContexts:[104]}],id:[605],includesCreatedEdit:[104],isPinned:[104],isReadByViewer:[104],issueDependenciesSummary:[634],issueFieldValues:[659,{after:[1455],before:[1455],first:[609],last:[609]}],issueType:[680],labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609]}],lastEditedAt:[330],linkedBranches:[712,{after:[1455],before:[1455],first:[609],last:[609]}],locked:[104],milestone:[771],number:[609],parent:[623],participants:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],pinnedIssueComment:[921],projectCards:[932,{after:[1455],before:[1455],first:[609],last:[609],archivedStates:[931,`[ProjectCardArchivedState]`]}],projectItems:[973,{includeArchived:[104],after:[1455],before:[1455],first:[609],last:[609]}],projectV2:[950,{number:[609,`Int!`]}],projectsV2:[955,{query:[1455],orderBy:[1003],minPermissionLevel:[1006],after:[1455],before:[1455],first:[609],last:[609]}],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],state:[670],stateReason:[671,{enableDuplicate:[104]}],subIssues:[632,{after:[1455],before:[1455],first:[609],last:[609]}],subIssuesSummary:[1459],suggestedActors:[79,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],timeline:[673,{since:[330],after:[1455],before:[1455],first:[609],last:[609]}],timelineItems:[677,{since:[330],skip:[609],itemTypes:[679,`[IssueTimelineItemsItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],title:[1455],titleHTML:[1455],trackedInIssues:[632,{after:[1455],before:[1455],first:[609],last:[609]}],trackedIssues:[632,{after:[1455],before:[1455],first:[609],last:[609]}],trackedIssuesCount:[609,{states:[1509,`[TrackedIssueStates]`]}],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanClose:[104],viewerCanDelete:[104],viewerCanLabel:[104],viewerCanReact:[104],viewerCanReopen:[104],viewerCanSetFields:[104],viewerCanSubscribe:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],viewerSubscription:[1468],viewerThreadSubscriptionFormAction:[1504],viewerThreadSubscriptionStatus:[1505],__typename:[1455]},IssueClosedStateReason:{},IssueComment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],createdAt:[330],createdViaEmail:[104],databaseId:[609],editor:[12],fullDatabaseId:[96],id:[605],includesCreatedEdit:[104],isMinimized:[104],isPinned:[104],issue:[623],lastEditedAt:[330],minimizedReason:[1455],pinnedAt:[330],pinnedBy:[1697],publishedAt:[330],pullRequest:[1046],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMinimize:[104],viewerCanPin:[104],viewerCanReact:[104],viewerCanUnminimize:[104],viewerCanUnpin:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],__typename:[1455]},IssueCommentConnection:{edges:[627],nodes:[625],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueCommentEdge:{cursor:[1455],node:[625],__typename:[1455]},IssueCommentOrder:{field:[629],direction:[796],__typename:[1455]},IssueCommentOrderField:{},IssueCommentPinnedEvent:{actor:[12],createdAt:[330],id:[605],issueComment:[625],__typename:[1455]},IssueCommentUnpinnedEvent:{actor:[12],createdAt:[330],id:[605],issueComment:[625],__typename:[1455]},IssueConnection:{edges:[637],nodes:[623],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueContributionsByRepository:{contributions:[309,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[222]}],repository:[1207],__typename:[1455]},IssueDependenciesSummary:{blockedBy:[609],blocking:[609],totalBlockedBy:[609],totalBlocking:[609],__typename:[1455]},IssueDependencyOrder:{field:[636],direction:[796],__typename:[1455]},IssueDependencyOrderField:{},IssueEdge:{cursor:[1455],node:[623],__typename:[1455]},IssueFieldAddedEvent:{actor:[12],color:[1455],createdAt:[330],id:[605],issueField:[662],value:[1455],__typename:[1455]},IssueFieldChangedEvent:{actor:[12],createdAt:[330],id:[605],issueField:[662],newColor:[1455],newValue:[1455],previousColor:[1455],previousValue:[1455],__typename:[1455]},IssueFieldCommon:{createdAt:[330],dataType:[642],description:[1455],name:[1455],visibility:[661],on_IssueFieldDate:[643],on_IssueFieldNumber:[645],on_IssueFieldSingleSelect:[650],on_IssueFieldText:[655],__typename:[1455]},IssueFieldCreateOrUpdateInput:{fieldId:[605],textValue:[1455],dateValue:[1455],singleSelectOptionId:[605],numberValue:[563],delete:[104],__typename:[1455]},IssueFieldDataType:{},IssueFieldDate:{createdAt:[330],dataType:[642],description:[1455],id:[605],name:[1455],visibility:[661],__typename:[1455]},IssueFieldDateValue:{field:[662],id:[605],value:[1455],__typename:[1455]},IssueFieldNumber:{createdAt:[330],dataType:[642],description:[1455],id:[605],name:[1455],visibility:[661],__typename:[1455]},IssueFieldNumberValue:{field:[662],id:[605],value:[563],__typename:[1455]},IssueFieldOrder:{field:[648],direction:[796],__typename:[1455]},IssueFieldOrderField:{},IssueFieldRemovedEvent:{actor:[12],createdAt:[330],id:[605],issueField:[662],__typename:[1455]},IssueFieldSingleSelect:{createdAt:[330],dataType:[642],description:[1455],id:[605],name:[1455],options:[651],visibility:[661],__typename:[1455]},IssueFieldSingleSelectOption:{color:[652],description:[1455],id:[605],name:[1455],priority:[609],__typename:[1455]},IssueFieldSingleSelectOptionColor:{},IssueFieldSingleSelectOptionInput:{name:[1455],color:[652],description:[1455],priority:[609],__typename:[1455]},IssueFieldSingleSelectValue:{color:[652],description:[1455],field:[662],id:[605],name:[1455],optionId:[1455],value:[1455],__typename:[1455]},IssueFieldText:{createdAt:[330],dataType:[642],description:[1455],id:[605],name:[1455],visibility:[661],__typename:[1455]},IssueFieldTextValue:{field:[662],id:[605],value:[1455],__typename:[1455]},IssueFieldValue:{on_IssueFieldDateValue:[644],on_IssueFieldNumberValue:[646],on_IssueFieldSingleSelectValue:[654],on_IssueFieldTextValue:[656],on_IssueFieldValueCommon:[658],on_Node:[788],__typename:[1455]},IssueFieldValueCommon:{field:[662],on_IssueFieldDateValue:[644],on_IssueFieldNumberValue:[646],on_IssueFieldSingleSelectValue:[654],on_IssueFieldTextValue:[656],__typename:[1455]},IssueFieldValueConnection:{edges:[660],nodes:[657],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueFieldValueEdge:{cursor:[1455],node:[657],__typename:[1455]},IssueFieldVisibility:{},IssueFields:{on_IssueFieldDate:[643],on_IssueFieldNumber:[645],on_IssueFieldSingleSelect:[650],on_IssueFieldText:[655],on_IssueFieldCommon:[640],on_Node:[788],__typename:[1455]},IssueFieldsConnection:{edges:[664],nodes:[662],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueFieldsEdge:{cursor:[1455],node:[662],__typename:[1455]},IssueFilters:{assignee:[1455],createdBy:[1455],labels:[1455],mentioned:[1455],milestone:[1455],milestoneNumber:[1455],since:[330],states:[670],type:[1455],viewerSubscribed:[104],__typename:[1455]},IssueOrPullRequest:{on_Issue:[623],on_PullRequest:[1046],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Node:[788],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},IssueOrder:{field:[668],direction:[796],__typename:[1455]},IssueOrderField:{},IssueSearchType:{},IssueState:{},IssueStateReason:{},IssueTemplate:{about:[1455],assignees:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],body:[1455],filename:[1455],labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609]}],name:[1455],title:[1455],type:[680],__typename:[1455]},IssueTimelineConnection:{edges:[675],nodes:[674],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueTimelineItem:{on_AssignedEvent:[77],on_ClosedEvent:[179],on_Commit:[191],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_IssueComment:[625],on_LabeledEvent:[696],on_LockedEvent:[718],on_MilestonedEvent:[778],on_ReferencedEvent:[1122],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_SubscribedEvent:[1467],on_TransferredEvent:[1514],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnsubscribedEvent:[1560],on_UserBlockedEvent:[1699],on_Node:[788],on_UniformResourceLocatable:[1530],on_GitObject:[587],on_Subscribable:[1465],on_Comment:[187],on_Deletable:[334],on_Minimizable:[779],on_Pinnable:[904],on_Reactable:[1099],on_RepositoryNode:[1248],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},IssueTimelineItemEdge:{cursor:[1455],node:[674],__typename:[1455]},IssueTimelineItems:{on_AddedToProjectEvent:[60],on_AddedToProjectV2Event:[61],on_AssignedEvent:[77],on_BlockedByAddedEvent:[100],on_BlockedByRemovedEvent:[101],on_BlockingAddedEvent:[102],on_BlockingRemovedEvent:[103],on_ClosedEvent:[179],on_CommentDeletedEvent:[190],on_ConnectedEvent:[214],on_ConvertedFromDraftEvent:[231],on_ConvertedNoteToIssueEvent:[232],on_ConvertedToDiscussionEvent:[233],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_DisconnectedEvent:[437],on_IssueComment:[625],on_IssueCommentPinnedEvent:[630],on_IssueCommentUnpinnedEvent:[631],on_IssueFieldAddedEvent:[638],on_IssueFieldChangedEvent:[639],on_IssueFieldRemovedEvent:[649],on_IssueTypeAddedEvent:[681],on_IssueTypeChangedEvent:[682],on_IssueTypeRemovedEvent:[688],on_LabeledEvent:[696],on_LockedEvent:[718],on_MarkedAsDuplicateEvent:[732],on_MentionedEvent:[746],on_MilestonedEvent:[778],on_MovedColumnsInProjectEvent:[786],on_ParentIssueAddedEvent:[893],on_ParentIssueRemovedEvent:[894],on_PinnedEvent:[919],on_ProjectV2ItemStatusChangedEvent:[996],on_ReferencedEvent:[1122],on_RemovedFromProjectEvent:[1165],on_RemovedFromProjectV2Event:[1166],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_SubIssueAddedEvent:[1457],on_SubIssueRemovedEvent:[1458],on_SubscribedEvent:[1467],on_TransferredEvent:[1514],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnmarkedAsDuplicateEvent:[1550],on_UnpinnedEvent:[1557],on_UnsubscribedEvent:[1560],on_UserBlockedEvent:[1699],on_Node:[788],on_ProjectV2Event:[958],on_UniformResourceLocatable:[1530],on_Comment:[187],on_Deletable:[334],on_Minimizable:[779],on_Pinnable:[904],on_Reactable:[1099],on_RepositoryNode:[1248],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},IssueTimelineItemsConnection:{edges:[678],filteredCount:[609],nodes:[676],pageCount:[609],pageInfo:[892],totalCount:[609],updatedAt:[330],__typename:[1455]},IssueTimelineItemsEdge:{cursor:[1455],node:[676],__typename:[1455]},IssueTimelineItemsItemType:{},IssueType:{color:[683],description:[1455],id:[605],isEnabled:[104],isPrivate:[104],issues:[632,{orderBy:[667],labels:[1455,`[String!]`],states:[670,`[IssueState!]`],filterBy:[665],after:[1455],before:[1455],first:[609],last:[609],repositoryId:[605,`ID!`]}],name:[1455],pinnedFields:[662],__typename:[1455]},IssueTypeAddedEvent:{actor:[12],createdAt:[330],id:[605],issueType:[680],__typename:[1455]},IssueTypeChangedEvent:{actor:[12],createdAt:[330],id:[605],issueType:[680],prevIssueType:[680],__typename:[1455]},IssueTypeColor:{},IssueTypeConnection:{edges:[685],nodes:[680],pageInfo:[892],totalCount:[609],__typename:[1455]},IssueTypeEdge:{cursor:[1455],node:[680],__typename:[1455]},IssueTypeOrder:{field:[687],direction:[796],__typename:[1455]},IssueTypeOrderField:{},IssueTypeRemovedEvent:{actor:[12],createdAt:[330],id:[605],issueType:[680],__typename:[1455]},JoinedGitHubContribution:{isRestricted:[104],occurredAt:[330],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},Label:{color:[1455],createdAt:[330],description:[1455],id:[605],isDefault:[104],issues:[632,{orderBy:[667],labels:[1455,`[String!]`],states:[670,`[IssueState!]`],filterBy:[665],after:[1455],before:[1455],first:[609],last:[609]}],name:[1455],pullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],repository:[1207],resourcePath:[1518],updatedAt:[330],url:[1518],__typename:[1455]},LabelConnection:{edges:[692],nodes:[690],pageInfo:[892],totalCount:[609],__typename:[1455]},LabelEdge:{cursor:[1455],node:[690],__typename:[1455]},LabelOrder:{field:[694],direction:[796],__typename:[1455]},LabelOrderField:{},Labelable:{labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609]}],viewerCanLabel:[104],on_Discussion:[438],on_Issue:[623],on_PullRequest:[1046],__typename:[1455]},LabeledEvent:{actor:[12],createdAt:[330],id:[605],label:[690],labelable:[695],__typename:[1455]},Language:{color:[1455],id:[605],name:[1455],__typename:[1455]},LanguageConnection:{edges:[699],nodes:[697],pageInfo:[892],totalCount:[609],totalSize:[609],__typename:[1455]},LanguageEdge:{cursor:[1455],node:[697],size:[609],__typename:[1455]},LanguageOrder:{field:[701],direction:[796],__typename:[1455]},LanguageOrderField:{},LexicalFallbackReason:{},License:{body:[1455],conditions:[704],description:[1455],featured:[104],hidden:[104],id:[605],implementation:[1455],key:[1455],limitations:[704],name:[1455],nickname:[1455],permissions:[704],pseudoLicense:[104],spdxId:[1455],url:[1518],__typename:[1455]},LicenseRule:{description:[1455],key:[1455],label:[1455],__typename:[1455]},LinkProjectV2ToRepositoryInput:{clientMutationId:[1455],projectId:[605],repositoryId:[605],__typename:[1455]},LinkProjectV2ToRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},LinkProjectV2ToTeamInput:{clientMutationId:[1455],projectId:[605],teamId:[605],__typename:[1455]},LinkProjectV2ToTeamPayload:{clientMutationId:[1455],team:[1476],__typename:[1455]},LinkRepositoryToProjectInput:{clientMutationId:[1455],projectId:[605],repositoryId:[605],__typename:[1455]},LinkRepositoryToProjectPayload:{clientMutationId:[1455],project:[929],repository:[1207],__typename:[1455]},LinkedBranch:{id:[605],ref:[1113],__typename:[1455]},LinkedBranchConnection:{edges:[713],nodes:[711],pageInfo:[892],totalCount:[609],__typename:[1455]},LinkedBranchEdge:{cursor:[1455],node:[711],__typename:[1455]},LockLockableInput:{clientMutationId:[1455],lockableId:[605],lockReason:[716],__typename:[1455]},LockLockablePayload:{actor:[12],clientMutationId:[1455],lockedRecord:[717],__typename:[1455]},LockReason:{},Lockable:{activeLockReason:[716],locked:[104],on_Discussion:[438],on_Issue:[623],on_PullRequest:[1046],__typename:[1455]},LockedEvent:{actor:[12],createdAt:[330],id:[605],lockReason:[716],lockable:[717],__typename:[1455]},Mannequin:{avatarUrl:[1518,{size:[609]}],claimant:[1697],createdAt:[330],databaseId:[609],email:[1455],id:[605],login:[1455],name:[1455],resourcePath:[1518],updatedAt:[330],url:[1518],__typename:[1455]},MannequinConnection:{edges:[721],nodes:[719],pageInfo:[892],totalCount:[609],__typename:[1455]},MannequinEdge:{cursor:[1455],node:[719],__typename:[1455]},MannequinOrder:{field:[723],direction:[796],__typename:[1455]},MannequinOrderField:{},MarkDiscussionCommentAsAnswerInput:{clientMutationId:[1455],id:[605],__typename:[1455]},MarkDiscussionCommentAsAnswerPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},MarkFileAsViewedInput:{clientMutationId:[1455],pullRequestId:[605],path:[1455],__typename:[1455]},MarkFileAsViewedPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},MarkProjectV2AsTemplateInput:{clientMutationId:[1455],projectId:[605],__typename:[1455]},MarkProjectV2AsTemplatePayload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},MarkPullRequestReadyForReviewInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},MarkPullRequestReadyForReviewPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},MarkedAsDuplicateEvent:{actor:[12],canonical:[666],createdAt:[330],duplicate:[666],id:[605],isCrossRepository:[104],__typename:[1455]},MarketplaceCategory:{description:[1455],howItWorks:[1455],id:[605],name:[1455],primaryListingCount:[609],resourcePath:[1518],secondaryListingCount:[609],slug:[1455],url:[1518],__typename:[1455]},MarketplaceListing:{app:[65],companyUrl:[1518],configurationResourcePath:[1518],configurationUrl:[1518],documentationUrl:[1518],extendedDescription:[1455],extendedDescriptionHTML:[599],fullDescription:[1455],fullDescriptionHTML:[599],hasPublishedFreeTrialPlans:[104],hasTermsOfService:[104],hasVerifiedOwner:[104],howItWorks:[1455],howItWorksHTML:[599],id:[605],installationUrl:[1518],installedForViewer:[104],isArchived:[104],isDraft:[104],isPaid:[104],isPublic:[104],isRejected:[104],isUnverified:[104],isUnverifiedPending:[104],isVerificationPendingFromDraft:[104],isVerificationPendingFromUnverified:[104],isVerified:[104],logoBackgroundColor:[1455],logoUrl:[1518,{size:[609]}],name:[1455],normalizedShortDescription:[1455],pricingUrl:[1518],primaryCategory:[733],privacyPolicyUrl:[1518],resourcePath:[1518],screenshotUrls:[1455],secondaryCategory:[733],shortDescription:[1455],slug:[1455],statusUrl:[1518],supportEmail:[1455],supportUrl:[1518],termsOfServiceUrl:[1518],url:[1518],viewerCanAddPlans:[104],viewerCanApprove:[104],viewerCanDelist:[104],viewerCanEdit:[104],viewerCanEditCategories:[104],viewerCanEditPlans:[104],viewerCanRedraft:[104],viewerCanReject:[104],viewerCanRequestApproval:[104],viewerHasPurchased:[104],viewerHasPurchasedForAllOrganizations:[104],viewerIsListingAdmin:[104],__typename:[1455]},MarketplaceListingConnection:{edges:[736],nodes:[734],pageInfo:[892],totalCount:[609],__typename:[1455]},MarketplaceListingEdge:{cursor:[1455],node:[734],__typename:[1455]},MaxFilePathLengthParameters:{maxFilePathLength:[609],__typename:[1455]},MaxFilePathLengthParametersInput:{maxFilePathLength:[609],__typename:[1455]},MaxFileSizeParameters:{maxFileSize:[609],__typename:[1455]},MaxFileSizeParametersInput:{maxFileSize:[609],__typename:[1455]},MemberFeatureRequestNotification:{body:[1455],id:[605],title:[1455],updatedAt:[330],__typename:[1455]},MemberStatusable:{memberStatuses:[1717,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1719]}],on_Organization:[841],on_Team:[1476],__typename:[1455]},MembersCanDeleteReposClearAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},MembersCanDeleteReposDisableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},MembersCanDeleteReposEnableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},MentionedEvent:{actor:[12],createdAt:[330],databaseId:[609],id:[605],__typename:[1455]},MergeBranchInput:{clientMutationId:[1455],repositoryId:[605],base:[1455],head:[1455],commitMessage:[1455],authorEmail:[1455],__typename:[1455]},MergeBranchPayload:{clientMutationId:[1455],mergeCommit:[191],__typename:[1455]},MergeCommitMessage:{},MergeCommitTitle:{},MergePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],commitHeadline:[1455],commitBody:[1455],expectedHeadOid:[588],mergeMethod:[1060],authorEmail:[1455],__typename:[1455]},MergePullRequestPayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},MergeQueue:{configuration:[754],entries:[756,{after:[1455],before:[1455],first:[609],last:[609]}],id:[605],nextEntryEstimatedTimeToMerge:[609],repository:[1207],resourcePath:[1518],url:[1518],__typename:[1455]},MergeQueueConfiguration:{checkResponseTimeout:[609],maximumEntriesToBuild:[609],maximumEntriesToMerge:[609],mergeMethod:[1060],mergingStrategy:[761],minimumEntriesToMerge:[609],minimumEntriesToMergeWaitTime:[609],__typename:[1455]},MergeQueueEntry:{baseCommit:[191],enqueuedAt:[330],enqueuer:[12],estimatedTimeToMerge:[609],headCommit:[191],id:[605],jump:[104],mergeQueue:[753],position:[609],pullRequest:[1046],solo:[104],state:[758],__typename:[1455]},MergeQueueEntryConnection:{edges:[757],nodes:[755],pageInfo:[892],totalCount:[609],__typename:[1455]},MergeQueueEntryEdge:{cursor:[1455],node:[755],__typename:[1455]},MergeQueueEntryState:{},MergeQueueGroupingStrategy:{},MergeQueueMergeMethod:{},MergeQueueMergingStrategy:{},MergeQueueParameters:{checkResponseTimeoutMinutes:[609],groupingStrategy:[759],maxEntriesToBuild:[609],maxEntriesToMerge:[609],mergeMethod:[760],minEntriesToMerge:[609],minEntriesToMergeWaitMinutes:[609],__typename:[1455]},MergeQueueParametersInput:{checkResponseTimeoutMinutes:[609],groupingStrategy:[759],maxEntriesToBuild:[609],maxEntriesToMerge:[609],mergeMethod:[760],minEntriesToMerge:[609],minEntriesToMergeWaitMinutes:[609],__typename:[1455]},MergeStateStatus:{},MergeableState:{},MergedEvent:{actor:[12],commit:[191],createdAt:[330],id:[605],mergeRef:[1113],mergeRefName:[1455],pullRequest:[1046],resourcePath:[1518],url:[1518],__typename:[1455]},Migration:{continueOnError:[104],createdAt:[330],databaseId:[1455],failureReason:[1455],id:[605],migrationLogUrl:[1518],migrationSource:[768],repositoryName:[1455],sourceUrl:[1518],state:[770],warningsCount:[609],on_RepositoryMigration:[1240],__typename:[1455]},MigrationSource:{id:[605],name:[1455],type:[769],url:[1518],__typename:[1455]},MigrationSourceType:{},MigrationState:{},Milestone:{closed:[104],closedAt:[330],closedIssueCount:[609],createdAt:[330],creator:[12],description:[1455],descriptionHTML:[1455],dueOn:[330],id:[605],issues:[632,{orderBy:[667],labels:[1455,`[String!]`],states:[670,`[IssueState!]`],filterBy:[665],after:[1455],before:[1455],first:[609],last:[609]}],number:[609],openIssueCount:[609],progressPercentage:[563],pullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],repository:[1207],resourcePath:[1518],state:[777],title:[1455],updatedAt:[330],url:[1518],viewerCanClose:[104],viewerCanReopen:[104],__typename:[1455]},MilestoneConnection:{edges:[773],nodes:[771],pageInfo:[892],totalCount:[609],__typename:[1455]},MilestoneEdge:{cursor:[1455],node:[771],__typename:[1455]},MilestoneItem:{on_Issue:[623],on_PullRequest:[1046],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Node:[788],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},MilestoneOrder:{field:[776],direction:[796],__typename:[1455]},MilestoneOrderField:{},MilestoneState:{},MilestonedEvent:{actor:[12],createdAt:[330],id:[605],milestoneTitle:[1455],subject:[774],__typename:[1455]},Minimizable:{isMinimized:[104],minimizedReason:[1455],viewerCanMinimize:[104],viewerCanUnminimize:[104],on_CommitComment:[195],on_DiscussionComment:[443],on_GistComment:[574],on_IssueComment:[625],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],__typename:[1455]},MinimizeCommentInput:{clientMutationId:[1455],subjectId:[605],classifier:[1206],__typename:[1455]},MinimizeCommentPayload:{clientMutationId:[1455],minimizedComment:[779],__typename:[1455]},MoveProjectCardInput:{clientMutationId:[1455],cardId:[605],columnId:[605],afterCardId:[605],__typename:[1455]},MoveProjectCardPayload:{cardEdge:[933],clientMutationId:[1455],__typename:[1455]},MoveProjectColumnInput:{clientMutationId:[1455],columnId:[605],afterColumnId:[605],__typename:[1455]},MoveProjectColumnPayload:{clientMutationId:[1455],columnEdge:[939],__typename:[1455]},MovedColumnsInProjectEvent:{actor:[12],createdAt:[330],databaseId:[609],id:[605],previousProjectColumnName:[1455],project:[929],projectCard:[930],projectColumnName:[1455],__typename:[1455]},Mutation:{abortQueuedMigrations:[1,{input:[0,`AbortQueuedMigrationsInput!`]}],abortRepositoryMigration:[3,{input:[2,`AbortRepositoryMigrationInput!`]}],acceptEnterpriseAdministratorInvitation:[5,{input:[4,`AcceptEnterpriseAdministratorInvitationInput!`]}],acceptEnterpriseMemberInvitation:[7,{input:[6,`AcceptEnterpriseMemberInvitationInput!`]}],acceptTopicSuggestion:[9,{input:[8,`AcceptTopicSuggestionInput!`]}],accessUserNamespaceRepository:[11,{input:[10,`AccessUserNamespaceRepositoryInput!`]}],addAssigneesToAssignable:[18,{input:[17,`AddAssigneesToAssignableInput!`]}],addBlockedBy:[20,{input:[19,`AddBlockedByInput!`]}],addComment:[22,{input:[21,`AddCommentInput!`]}],addDiscussionComment:[24,{input:[23,`AddDiscussionCommentInput!`]}],addDiscussionPollVote:[26,{input:[25,`AddDiscussionPollVoteInput!`]}],addEnterpriseOrganizationMember:[28,{input:[27,`AddEnterpriseOrganizationMemberInput!`]}],addEnterpriseSupportEntitlement:[30,{input:[29,`AddEnterpriseSupportEntitlementInput!`]}],addLabelsToLabelable:[32,{input:[31,`AddLabelsToLabelableInput!`]}],addProjectCard:[34,{input:[33,`AddProjectCardInput!`]}],addProjectColumn:[36,{input:[35,`AddProjectColumnInput!`]}],addProjectV2DraftIssue:[38,{input:[37,`AddProjectV2DraftIssueInput!`]}],addProjectV2ItemById:[40,{input:[39,`AddProjectV2ItemByIdInput!`]}],addPullRequestReview:[44,{input:[43,`AddPullRequestReviewInput!`]}],addPullRequestReviewComment:[42,{input:[41,`AddPullRequestReviewCommentInput!`]}],addPullRequestReviewThread:[46,{input:[45,`AddPullRequestReviewThreadInput!`]}],addPullRequestReviewThreadReply:[48,{input:[47,`AddPullRequestReviewThreadReplyInput!`]}],addReaction:[50,{input:[49,`AddReactionInput!`]}],addStar:[52,{input:[51,`AddStarInput!`]}],addSubIssue:[54,{input:[53,`AddSubIssueInput!`]}],addUpvote:[56,{input:[55,`AddUpvoteInput!`]}],addVerifiableDomain:[58,{input:[57,`AddVerifiableDomainInput!`]}],approveDeployments:[67,{input:[66,`ApproveDeploymentsInput!`]}],approveVerifiableDomain:[69,{input:[68,`ApproveVerifiableDomainInput!`]}],archiveProjectV2Item:[71,{input:[70,`ArchiveProjectV2ItemInput!`]}],archivePullRequest:[73,{input:[72,`ArchivePullRequestInput!`]}],archiveRepository:[75,{input:[74,`ArchiveRepositoryInput!`]}],cancelEnterpriseAdminInvitation:[128,{input:[127,`CancelEnterpriseAdminInvitationInput!`]}],cancelEnterpriseMemberInvitation:[130,{input:[129,`CancelEnterpriseMemberInvitationInput!`]}],cancelSponsorship:[132,{input:[131,`CancelSponsorshipInput!`]}],changeUserStatus:[134,{input:[133,`ChangeUserStatusInput!`]}],clearLabelsFromLabelable:[165,{input:[164,`ClearLabelsFromLabelableInput!`]}],clearProjectV2ItemFieldValue:[167,{input:[166,`ClearProjectV2ItemFieldValueInput!`]}],cloneProject:[169,{input:[168,`CloneProjectInput!`]}],cloneTemplateRepository:[171,{input:[170,`CloneTemplateRepositoryInput!`]}],closeDiscussion:[174,{input:[173,`CloseDiscussionInput!`]}],closeIssue:[176,{input:[175,`CloseIssueInput!`]}],closePullRequest:[178,{input:[177,`ClosePullRequestInput!`]}],convertProjectCardNoteToIssue:[225,{input:[224,`ConvertProjectCardNoteToIssueInput!`]}],convertProjectV2DraftIssueItemToIssue:[227,{input:[226,`ConvertProjectV2DraftIssueItemToIssueInput!`]}],convertPullRequestToDraft:[229,{input:[228,`ConvertPullRequestToDraftInput!`]}],copyProjectV2:[238,{input:[237,`CopyProjectV2Input!`]}],createAttributionInvitation:[240,{input:[239,`CreateAttributionInvitationInput!`]}],createBranchProtectionRule:[242,{input:[241,`CreateBranchProtectionRuleInput!`]}],createCheckRun:[244,{input:[243,`CreateCheckRunInput!`]}],createCheckSuite:[246,{input:[245,`CreateCheckSuiteInput!`]}],createCommitOnBranch:[248,{input:[247,`CreateCommitOnBranchInput!`]}],createDeployment:[250,{input:[249,`CreateDeploymentInput!`]}],createDeploymentStatus:[252,{input:[251,`CreateDeploymentStatusInput!`]}],createDiscussion:[254,{input:[253,`CreateDiscussionInput!`]}],createEnterpriseOrganization:[256,{input:[255,`CreateEnterpriseOrganizationInput!`]}],createEnvironment:[258,{input:[257,`CreateEnvironmentInput!`]}],createIpAllowListEntry:[260,{input:[259,`CreateIpAllowListEntryInput!`]}],createIssue:[266,{input:[265,`CreateIssueInput!`]}],createIssueField:[262,{input:[261,`CreateIssueFieldInput!`]}],createIssueFieldValue:[264,{input:[263,`CreateIssueFieldValueInput!`]}],createIssueType:[268,{input:[267,`CreateIssueTypeInput!`]}],createLabel:[270,{input:[269,`CreateLabelInput!`]}],createLinkedBranch:[272,{input:[271,`CreateLinkedBranchInput!`]}],createMigrationSource:[274,{input:[273,`CreateMigrationSourceInput!`]}],createProject:[276,{input:[275,`CreateProjectInput!`]}],createProjectV2:[282,{input:[279,`CreateProjectV2Input!`]}],createProjectV2Field:[278,{input:[277,`CreateProjectV2FieldInput!`]}],createProjectV2IssueField:[281,{input:[280,`CreateProjectV2IssueFieldInput!`]}],createProjectV2StatusUpdate:[284,{input:[283,`CreateProjectV2StatusUpdateInput!`]}],createPullRequest:[286,{input:[285,`CreatePullRequestInput!`]}],createRef:[288,{input:[287,`CreateRefInput!`]}],createRepository:[292,{input:[291,`CreateRepositoryInput!`]}],createRepositoryCustomProperty:[290,{input:[289,`CreateRepositoryCustomPropertyInput!`]}],createRepositoryRuleset:[294,{input:[293,`CreateRepositoryRulesetInput!`]}],createSponsorsListing:[296,{input:[295,`CreateSponsorsListingInput!`]}],createSponsorsTier:[298,{input:[297,`CreateSponsorsTierInput!`]}],createSponsorship:[300,{input:[299,`CreateSponsorshipInput!`]}],createSponsorships:[302,{input:[301,`CreateSponsorshipsInput!`]}],createUserList:[304,{input:[303,`CreateUserListInput!`]}],declineTopicSuggestion:[332,{input:[331,`DeclineTopicSuggestionInput!`]}],deleteBranchProtectionRule:[336,{input:[335,`DeleteBranchProtectionRuleInput!`]}],deleteDeployment:[338,{input:[337,`DeleteDeploymentInput!`]}],deleteDiscussion:[342,{input:[341,`DeleteDiscussionInput!`]}],deleteDiscussionComment:[340,{input:[339,`DeleteDiscussionCommentInput!`]}],deleteEnvironment:[344,{input:[343,`DeleteEnvironmentInput!`]}],deleteIpAllowListEntry:[346,{input:[345,`DeleteIpAllowListEntryInput!`]}],deleteIssue:[354,{input:[353,`DeleteIssueInput!`]}],deleteIssueComment:[348,{input:[347,`DeleteIssueCommentInput!`]}],deleteIssueField:[350,{input:[349,`DeleteIssueFieldInput!`]}],deleteIssueFieldValue:[352,{input:[351,`DeleteIssueFieldValueInput!`]}],deleteIssueType:[356,{input:[355,`DeleteIssueTypeInput!`]}],deleteLabel:[358,{input:[357,`DeleteLabelInput!`]}],deleteLinkedBranch:[360,{input:[359,`DeleteLinkedBranchInput!`]}],deletePackageVersion:[362,{input:[361,`DeletePackageVersionInput!`]}],deleteProject:[368,{input:[367,`DeleteProjectInput!`]}],deleteProjectCard:[364,{input:[363,`DeleteProjectCardInput!`]}],deleteProjectColumn:[366,{input:[365,`DeleteProjectColumnInput!`]}],deleteProjectV2:[374,{input:[371,`DeleteProjectV2Input!`]}],deleteProjectV2Field:[370,{input:[369,`DeleteProjectV2FieldInput!`]}],deleteProjectV2Item:[373,{input:[372,`DeleteProjectV2ItemInput!`]}],deleteProjectV2StatusUpdate:[376,{input:[375,`DeleteProjectV2StatusUpdateInput!`]}],deleteProjectV2Workflow:[378,{input:[377,`DeleteProjectV2WorkflowInput!`]}],deletePullRequestReview:[382,{input:[381,`DeletePullRequestReviewInput!`]}],deletePullRequestReviewComment:[380,{input:[379,`DeletePullRequestReviewCommentInput!`]}],deleteRef:[384,{input:[383,`DeleteRefInput!`]}],deleteRepositoryCustomProperty:[386,{input:[385,`DeleteRepositoryCustomPropertyInput!`]}],deleteRepositoryRuleset:[388,{input:[387,`DeleteRepositoryRulesetInput!`]}],deleteUserList:[390,{input:[389,`DeleteUserListInput!`]}],deleteVerifiableDomain:[392,{input:[391,`DeleteVerifiableDomainInput!`]}],dequeuePullRequest:[433,{input:[432,`DequeuePullRequestInput!`]}],disablePullRequestAutoMerge:[436,{input:[435,`DisablePullRequestAutoMergeInput!`]}],dismissPullRequestReview:[459,{input:[458,`DismissPullRequestReviewInput!`]}],dismissRepositoryVulnerabilityAlert:[462,{input:[461,`DismissRepositoryVulnerabilityAlertInput!`]}],enablePullRequestAutoMerge:[468,{input:[467,`EnablePullRequestAutoMergeInput!`]}],enqueuePullRequest:[470,{input:[469,`EnqueuePullRequestInput!`]}],followOrganization:[565,{input:[564,`FollowOrganizationInput!`]}],followUser:[567,{input:[566,`FollowUserInput!`]}],grantEnterpriseOrganizationsMigratorRole:[596,{input:[595,`GrantEnterpriseOrganizationsMigratorRoleInput!`]}],grantMigratorRole:[598,{input:[597,`GrantMigratorRoleInput!`]}],importProject:[608,{input:[607,`ImportProjectInput!`]}],inviteEnterpriseAdmin:[611,{input:[610,`InviteEnterpriseAdminInput!`]}],inviteEnterpriseMember:[613,{input:[612,`InviteEnterpriseMemberInput!`]}],linkProjectV2ToRepository:[706,{input:[705,`LinkProjectV2ToRepositoryInput!`]}],linkProjectV2ToTeam:[708,{input:[707,`LinkProjectV2ToTeamInput!`]}],linkRepositoryToProject:[710,{input:[709,`LinkRepositoryToProjectInput!`]}],lockLockable:[715,{input:[714,`LockLockableInput!`]}],markDiscussionCommentAsAnswer:[725,{input:[724,`MarkDiscussionCommentAsAnswerInput!`]}],markFileAsViewed:[727,{input:[726,`MarkFileAsViewedInput!`]}],markProjectV2AsTemplate:[729,{input:[728,`MarkProjectV2AsTemplateInput!`]}],markPullRequestReadyForReview:[731,{input:[730,`MarkPullRequestReadyForReviewInput!`]}],mergeBranch:[748,{input:[747,`MergeBranchInput!`]}],mergePullRequest:[752,{input:[751,`MergePullRequestInput!`]}],minimizeComment:[781,{input:[780,`MinimizeCommentInput!`]}],moveProjectCard:[783,{input:[782,`MoveProjectCardInput!`]}],moveProjectColumn:[785,{input:[784,`MoveProjectColumnInput!`]}],pinEnvironment:[899,{input:[898,`PinEnvironmentInput!`]}],pinIssue:[903,{input:[902,`PinIssueInput!`]}],pinIssueComment:[901,{input:[900,`PinIssueCommentInput!`]}],promoteRepositoryCustomProperty:[1038,{input:[1037,`PromoteRepositoryCustomPropertyInput!`]}],publishSponsorsTier:[1045,{input:[1044,`PublishSponsorsTierInput!`]}],regenerateEnterpriseIdentityProviderRecoveryCodes:[1125,{input:[1124,`RegenerateEnterpriseIdentityProviderRecoveryCodesInput!`]}],regenerateVerifiableDomainToken:[1127,{input:[1126,`RegenerateVerifiableDomainTokenInput!`]}],rejectDeployments:[1129,{input:[1128,`RejectDeploymentsInput!`]}],removeAssigneesFromAssignable:[1139,{input:[1138,`RemoveAssigneesFromAssignableInput!`]}],removeBlockedBy:[1141,{input:[1140,`RemoveBlockedByInput!`]}],removeEnterpriseAdmin:[1143,{input:[1142,`RemoveEnterpriseAdminInput!`]}],removeEnterpriseIdentityProvider:[1145,{input:[1144,`RemoveEnterpriseIdentityProviderInput!`]}],removeEnterpriseMember:[1147,{input:[1146,`RemoveEnterpriseMemberInput!`]}],removeEnterpriseOrganization:[1149,{input:[1148,`RemoveEnterpriseOrganizationInput!`]}],removeEnterpriseSupportEntitlement:[1151,{input:[1150,`RemoveEnterpriseSupportEntitlementInput!`]}],removeLabelsFromLabelable:[1153,{input:[1152,`RemoveLabelsFromLabelableInput!`]}],removeOutsideCollaborator:[1155,{input:[1154,`RemoveOutsideCollaboratorInput!`]}],removeReaction:[1157,{input:[1156,`RemoveReactionInput!`]}],removeStar:[1159,{input:[1158,`RemoveStarInput!`]}],removeSubIssue:[1161,{input:[1160,`RemoveSubIssueInput!`]}],removeUpvote:[1163,{input:[1162,`RemoveUpvoteInput!`]}],reopenDiscussion:[1170,{input:[1169,`ReopenDiscussionInput!`]}],reopenIssue:[1172,{input:[1171,`ReopenIssueInput!`]}],reopenPullRequest:[1174,{input:[1173,`ReopenPullRequestInput!`]}],reorderEnvironment:[1177,{input:[1176,`ReorderEnvironmentInput!`]}],replaceActorsForAssignable:[1179,{input:[1178,`ReplaceActorsForAssignableInput!`]}],reprioritizeSubIssue:[1289,{input:[1288,`ReprioritizeSubIssueInput!`]}],requestReviews:[1293,{input:[1292,`RequestReviewsInput!`]}],requestReviewsByLogin:[1291,{input:[1290,`RequestReviewsByLoginInput!`]}],rerequestCheckSuite:[1308,{input:[1307,`RerequestCheckSuiteInput!`]}],resolveReviewThread:[1310,{input:[1309,`ResolveReviewThreadInput!`]}],retireSponsorsTier:[1313,{input:[1312,`RetireSponsorsTierInput!`]}],revertPullRequest:[1315,{input:[1314,`RevertPullRequestInput!`]}],revokeEnterpriseOrganizationsMigratorRole:[1328,{input:[1327,`RevokeEnterpriseOrganizationsMigratorRoleInput!`]}],revokeMigratorRole:[1330,{input:[1329,`RevokeMigratorRoleInput!`]}],setEnterpriseIdentityProvider:[1367,{input:[1366,`SetEnterpriseIdentityProviderInput!`]}],setIssueFieldValue:[1369,{input:[1368,`SetIssueFieldValueInput!`]}],setOrganizationInteractionLimit:[1371,{input:[1370,`SetOrganizationInteractionLimitInput!`]}],setRepositoryCustomPropertyValues:[1373,{input:[1372,`SetRepositoryCustomPropertyValuesInput!`]}],setRepositoryInteractionLimit:[1375,{input:[1374,`SetRepositoryInteractionLimitInput!`]}],setUserInteractionLimit:[1377,{input:[1376,`SetUserInteractionLimitInput!`]}],startOrganizationMigration:[1442,{input:[1441,`StartOrganizationMigrationInput!`]}],startRepositoryMigration:[1444,{input:[1443,`StartRepositoryMigrationInput!`]}],submitPullRequestReview:[1461,{input:[1460,`SubmitPullRequestReviewInput!`]}],transferEnterpriseOrganization:[1511,{input:[1510,`TransferEnterpriseOrganizationInput!`]}],transferIssue:[1513,{input:[1512,`TransferIssueInput!`]}],unarchiveProjectV2Item:[1520,{input:[1519,`UnarchiveProjectV2ItemInput!`]}],unarchivePullRequest:[1522,{input:[1521,`UnarchivePullRequestInput!`]}],unarchiveRepository:[1524,{input:[1523,`UnarchiveRepositoryInput!`]}],unfollowOrganization:[1527,{input:[1526,`UnfollowOrganizationInput!`]}],unfollowUser:[1529,{input:[1528,`UnfollowUserInput!`]}],unlinkProjectV2FromRepository:[1534,{input:[1533,`UnlinkProjectV2FromRepositoryInput!`]}],unlinkProjectV2FromTeam:[1536,{input:[1535,`UnlinkProjectV2FromTeamInput!`]}],unlinkRepositoryFromProject:[1538,{input:[1537,`UnlinkRepositoryFromProjectInput!`]}],unlockLockable:[1540,{input:[1539,`UnlockLockableInput!`]}],unmarkDiscussionCommentAsAnswer:[1543,{input:[1542,`UnmarkDiscussionCommentAsAnswerInput!`]}],unmarkFileAsViewed:[1545,{input:[1544,`UnmarkFileAsViewedInput!`]}],unmarkIssueAsDuplicate:[1547,{input:[1546,`UnmarkIssueAsDuplicateInput!`]}],unmarkProjectV2AsTemplate:[1549,{input:[1548,`UnmarkProjectV2AsTemplateInput!`]}],unminimizeComment:[1552,{input:[1551,`UnminimizeCommentInput!`]}],unpinIssue:[1556,{input:[1555,`UnpinIssueInput!`]}],unpinIssueComment:[1554,{input:[1553,`UnpinIssueCommentInput!`]}],unresolveReviewThread:[1559,{input:[1558,`UnresolveReviewThreadInput!`]}],updateBranchProtectionRule:[1564,{input:[1563,`UpdateBranchProtectionRuleInput!`]}],updateCheckRun:[1566,{input:[1565,`UpdateCheckRunInput!`]}],updateCheckSuitePreferences:[1568,{input:[1567,`UpdateCheckSuitePreferencesInput!`]}],updateDiscussion:[1572,{input:[1571,`UpdateDiscussionInput!`]}],updateDiscussionComment:[1570,{input:[1569,`UpdateDiscussionCommentInput!`]}],updateEnterpriseAdministratorRole:[1574,{input:[1573,`UpdateEnterpriseAdministratorRoleInput!`]}],updateEnterpriseAllowPrivateRepositoryForkingSetting:[1576,{input:[1575,`UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput!`]}],updateEnterpriseDefaultRepositoryPermissionSetting:[1578,{input:[1577,`UpdateEnterpriseDefaultRepositoryPermissionSettingInput!`]}],updateEnterpriseDeployKeySetting:[1580,{input:[1579,`UpdateEnterpriseDeployKeySettingInput!`]}],updateEnterpriseMembersCanChangeRepositoryVisibilitySetting:[1582,{input:[1581,`UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput!`]}],updateEnterpriseMembersCanCreateRepositoriesSetting:[1584,{input:[1583,`UpdateEnterpriseMembersCanCreateRepositoriesSettingInput!`]}],updateEnterpriseMembersCanDeleteIssuesSetting:[1586,{input:[1585,`UpdateEnterpriseMembersCanDeleteIssuesSettingInput!`]}],updateEnterpriseMembersCanDeleteRepositoriesSetting:[1588,{input:[1587,`UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput!`]}],updateEnterpriseMembersCanInviteCollaboratorsSetting:[1590,{input:[1589,`UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput!`]}],updateEnterpriseMembersCanMakePurchasesSetting:[1592,{input:[1591,`UpdateEnterpriseMembersCanMakePurchasesSettingInput!`]}],updateEnterpriseMembersCanUpdateProtectedBranchesSetting:[1594,{input:[1593,`UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput!`]}],updateEnterpriseMembersCanViewDependencyInsightsSetting:[1596,{input:[1595,`UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput!`]}],updateEnterpriseOrganizationProjectsSetting:[1598,{input:[1597,`UpdateEnterpriseOrganizationProjectsSettingInput!`]}],updateEnterpriseOwnerOrganizationRole:[1600,{input:[1599,`UpdateEnterpriseOwnerOrganizationRoleInput!`]}],updateEnterpriseProfile:[1602,{input:[1601,`UpdateEnterpriseProfileInput!`]}],updateEnterpriseRepositoryProjectsSetting:[1604,{input:[1603,`UpdateEnterpriseRepositoryProjectsSettingInput!`]}],updateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting:[1606,{input:[1605,`UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput!`]}],updateEnterpriseTwoFactorAuthenticationRequiredSetting:[1608,{input:[1607,`UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput!`]}],updateEnvironment:[1610,{input:[1609,`UpdateEnvironmentInput!`]}],updateIpAllowListEnabledSetting:[1612,{input:[1611,`UpdateIpAllowListEnabledSettingInput!`]}],updateIpAllowListEntry:[1614,{input:[1613,`UpdateIpAllowListEntryInput!`]}],updateIpAllowListForInstalledAppsEnabledSetting:[1616,{input:[1615,`UpdateIpAllowListForInstalledAppsEnabledSettingInput!`]}],updateIpAllowListUserLevelEnforcementEnabledSetting:[1618,{input:[1617,`UpdateIpAllowListUserLevelEnforcementEnabledSettingInput!`]}],updateIssue:[1628,{input:[1625,`UpdateIssueInput!`]}],updateIssueComment:[1620,{input:[1619,`UpdateIssueCommentInput!`]}],updateIssueField:[1622,{input:[1621,`UpdateIssueFieldInput!`]}],updateIssueFieldValue:[1624,{input:[1623,`UpdateIssueFieldValueInput!`]}],updateIssueIssueType:[1627,{input:[1626,`UpdateIssueIssueTypeInput!`]}],updateIssueType:[1630,{input:[1629,`UpdateIssueTypeInput!`]}],updateLabel:[1632,{input:[1631,`UpdateLabelInput!`]}],updateNotificationRestrictionSetting:[1634,{input:[1633,`UpdateNotificationRestrictionSettingInput!`]}],updateOrganizationAllowPrivateRepositoryForkingSetting:[1636,{input:[1635,`UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!`]}],updateOrganizationWebCommitSignoffSetting:[1638,{input:[1637,`UpdateOrganizationWebCommitSignoffSettingInput!`]}],updatePatreonSponsorability:[1642,{input:[1641,`UpdatePatreonSponsorabilityInput!`]}],updateProject:[1648,{input:[1647,`UpdateProjectInput!`]}],updateProjectCard:[1644,{input:[1643,`UpdateProjectCardInput!`]}],updateProjectColumn:[1646,{input:[1645,`UpdateProjectColumnInput!`]}],updateProjectV2:[1660,{input:[1655,`UpdateProjectV2Input!`]}],updateProjectV2Collaborators:[1650,{input:[1649,`UpdateProjectV2CollaboratorsInput!`]}],updateProjectV2DraftIssue:[1652,{input:[1651,`UpdateProjectV2DraftIssueInput!`]}],updateProjectV2Field:[1654,{input:[1653,`UpdateProjectV2FieldInput!`]}],updateProjectV2ItemFieldValue:[1657,{input:[1656,`UpdateProjectV2ItemFieldValueInput!`]}],updateProjectV2ItemPosition:[1659,{input:[1658,`UpdateProjectV2ItemPositionInput!`]}],updateProjectV2StatusUpdate:[1662,{input:[1661,`UpdateProjectV2StatusUpdateInput!`]}],updatePullRequest:[1666,{input:[1665,`UpdatePullRequestInput!`]}],updatePullRequestBranch:[1664,{input:[1663,`UpdatePullRequestBranchInput!`]}],updatePullRequestReview:[1670,{input:[1669,`UpdatePullRequestReviewInput!`]}],updatePullRequestReviewComment:[1668,{input:[1667,`UpdatePullRequestReviewCommentInput!`]}],updateRef:[1672,{input:[1671,`UpdateRefInput!`]}],updateRefs:[1674,{input:[1673,`UpdateRefsInput!`]}],updateRepository:[1678,{input:[1677,`UpdateRepositoryInput!`]}],updateRepositoryCustomProperty:[1676,{input:[1675,`UpdateRepositoryCustomPropertyInput!`]}],updateRepositoryRuleset:[1680,{input:[1679,`UpdateRepositoryRulesetInput!`]}],updateRepositoryWebCommitSignoffSetting:[1682,{input:[1681,`UpdateRepositoryWebCommitSignoffSettingInput!`]}],updateSponsorshipPreferences:[1684,{input:[1683,`UpdateSponsorshipPreferencesInput!`]}],updateSubscription:[1686,{input:[1685,`UpdateSubscriptionInput!`]}],updateTeamReviewAssignment:[1688,{input:[1687,`UpdateTeamReviewAssignmentInput!`]}],updateTeamsRepository:[1690,{input:[1689,`UpdateTeamsRepositoryInput!`]}],updateTopics:[1692,{input:[1691,`UpdateTopicsInput!`]}],updateUserList:[1694,{input:[1693,`UpdateUserListInput!`]}],updateUserListsForItem:[1696,{input:[1695,`UpdateUserListsForItemInput!`]}],verifyVerifiableDomain:[1729,{input:[1728,`VerifyVerifiableDomainInput!`]}],__typename:[1455]},Node:{id:[605],on_AddedToMergeQueueEvent:[59],on_AddedToProjectEvent:[60],on_AddedToProjectV2Event:[61],on_App:[65],on_AssignedEvent:[77],on_AutoMergeDisabledEvent:[85],on_AutoMergeEnabledEvent:[86],on_AutoRebaseEnabledEvent:[88],on_AutoSquashEnabledEvent:[89],on_AutomaticBaseChangeFailedEvent:[90],on_AutomaticBaseChangeSucceededEvent:[91],on_BaseRefChangedEvent:[93],on_BaseRefDeletedEvent:[94],on_BaseRefForcePushedEvent:[95],on_Blob:[99],on_BlockedByAddedEvent:[100],on_BlockedByRemovedEvent:[101],on_BlockingAddedEvent:[102],on_BlockingRemovedEvent:[103],on_Bot:[105],on_BranchProtectionRule:[109],on_BypassForcePushAllowance:[117],on_BypassPullRequestAllowance:[120],on_CWE:[124],on_CheckRun:[144],on_CheckSuite:[158],on_ClosedEvent:[179],on_CodeOfConduct:[181],on_CommentDeletedEvent:[190],on_Commit:[191],on_CommitComment:[195],on_CommitCommentThread:[198],on_Comparison:[211],on_ConnectedEvent:[214],on_ConvertToDraftEvent:[230],on_ConvertedFromDraftEvent:[231],on_ConvertedNoteToIssueEvent:[232],on_ConvertedToDiscussionEvent:[233],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_DependencyGraphManifest:[400],on_DeployKey:[403],on_DeployedEvent:[406],on_Deployment:[407],on_DeploymentEnvironmentChangedEvent:[410],on_DeploymentReview:[420],on_DeploymentStatus:[428],on_DisconnectedEvent:[437],on_Discussion:[438],on_DiscussionCategory:[439],on_DiscussionComment:[443],on_DiscussionPoll:[450],on_DiscussionPollOption:[451],on_DraftIssue:[463],on_Enterprise:[471],on_EnterpriseAdministratorInvitation:[474],on_EnterpriseIdentityProvider:[491],on_EnterpriseMemberInvitation:[495],on_EnterpriseRepositoryInfo:[514],on_EnterpriseServerInstallation:[517],on_EnterpriseServerUserAccount:[524],on_EnterpriseServerUserAccountEmail:[527],on_EnterpriseServerUserAccountsUpload:[534],on_EnterpriseUserAccount:[540],on_Environment:[543],on_ExternalIdentity:[549],on_Gist:[573],on_GistComment:[574],on_HeadRefDeletedEvent:[600],on_HeadRefForcePushedEvent:[601],on_HeadRefRestoredEvent:[602],on_IpAllowListEntry:[615],on_Issue:[623],on_IssueComment:[625],on_IssueCommentPinnedEvent:[630],on_IssueCommentUnpinnedEvent:[631],on_IssueFieldAddedEvent:[638],on_IssueFieldChangedEvent:[639],on_IssueFieldDate:[643],on_IssueFieldDateValue:[644],on_IssueFieldNumber:[645],on_IssueFieldNumberValue:[646],on_IssueFieldRemovedEvent:[649],on_IssueFieldSingleSelect:[650],on_IssueFieldSingleSelectOption:[651],on_IssueFieldSingleSelectValue:[654],on_IssueFieldText:[655],on_IssueFieldTextValue:[656],on_IssueType:[680],on_IssueTypeAddedEvent:[681],on_IssueTypeChangedEvent:[682],on_IssueTypeRemovedEvent:[688],on_Label:[690],on_LabeledEvent:[696],on_Language:[697],on_License:[703],on_LinkedBranch:[711],on_LockedEvent:[718],on_Mannequin:[719],on_MarkedAsDuplicateEvent:[732],on_MarketplaceCategory:[733],on_MarketplaceListing:[734],on_MemberFeatureRequestNotification:[741],on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_MentionedEvent:[746],on_MergeQueue:[753],on_MergeQueueEntry:[755],on_MergedEvent:[766],on_MigrationSource:[768],on_Milestone:[771],on_MilestonedEvent:[778],on_MovedColumnsInProjectEvent:[786],on_OIDCProvider:[790],on_OauthApplicationCreateAuditEntry:[793],on_OrgAddBillingManagerAuditEntry:[797],on_OrgAddMemberAuditEntry:[798],on_OrgBlockUserAuditEntry:[800],on_OrgConfigDisableCollaboratorsOnlyAuditEntry:[801],on_OrgConfigEnableCollaboratorsOnlyAuditEntry:[802],on_OrgCreateAuditEntry:[803],on_OrgDisableOauthAppRestrictionsAuditEntry:[805],on_OrgDisableSamlAuditEntry:[806],on_OrgDisableTwoFactorRequirementAuditEntry:[807],on_OrgEnableOauthAppRestrictionsAuditEntry:[808],on_OrgEnableSamlAuditEntry:[809],on_OrgEnableTwoFactorRequirementAuditEntry:[810],on_OrgInviteMemberAuditEntry:[813],on_OrgInviteToBusinessAuditEntry:[814],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],on_OrgRemoveBillingManagerAuditEntry:[820],on_OrgRemoveMemberAuditEntry:[822],on_OrgRemoveOutsideCollaboratorAuditEntry:[825],on_OrgRestoreMemberAuditEntry:[828],on_OrgUnblockUserAuditEntry:[833],on_OrgUpdateDefaultRepositoryPermissionAuditEntry:[834],on_OrgUpdateMemberAuditEntry:[836],on_OrgUpdateMemberRepositoryCreationPermissionAuditEntry:[838],on_OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:[840],on_Organization:[841],on_OrganizationIdentityProvider:[850],on_OrganizationInvitation:[851],on_OrganizationMigration:[861],on_Package:[872],on_PackageFile:[875],on_PackageTag:[884],on_PackageVersion:[886],on_ParentIssueAddedEvent:[893],on_ParentIssueRemovedEvent:[894],on_PinnedDiscussion:[909],on_PinnedEnvironment:[914],on_PinnedEvent:[919],on_PinnedIssue:[920],on_PinnedIssueComment:[921],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_Project:[929],on_ProjectCard:[930],on_ProjectColumn:[937],on_ProjectV2:[950],on_ProjectV2Field:[959],on_ProjectV2Item:[972],on_ProjectV2ItemFieldDateValue:[976],on_ProjectV2ItemFieldIterationValue:[977],on_ProjectV2ItemFieldNumberValue:[980],on_ProjectV2ItemFieldSingleSelectValue:[984],on_ProjectV2ItemFieldTextValue:[985],on_ProjectV2ItemStatusChangedEvent:[996],on_ProjectV2IterationField:[999],on_ProjectV2SingleSelectField:[1009],on_ProjectV2StatusUpdate:[1021],on_ProjectV2View:[1026],on_ProjectV2Workflow:[1032],on_PublicKey:[1041],on_PullRequest:[1046],on_PullRequestCommit:[1052],on_PullRequestCommitCommentThread:[1053],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],on_PullRequestReviewThread:[1076],on_PullRequestThread:[1083],on_Push:[1092],on_PushAllowance:[1093],on_Query:[1097],on_Reaction:[1102],on_ReadyForReviewEvent:[1112],on_Ref:[1113],on_ReferencedEvent:[1122],on_Release:[1130],on_ReleaseAsset:[1131],on_RemovedFromMergeQueueEvent:[1164],on_RemovedFromProjectEvent:[1165],on_RemovedFromProjectV2Event:[1166],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_Repository:[1207],on_RepositoryCustomProperty:[1217],on_RepositoryInvitation:[1234],on_RepositoryMigration:[1240],on_RepositoryRule:[1257],on_RepositoryRuleset:[1266],on_RepositoryRulesetBypassActor:[1267],on_RepositoryTopic:[1276],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],on_RepositoryVulnerabilityAlert:[1282],on_ReviewDismissalAllowance:[1316],on_ReviewDismissedEvent:[1320],on_ReviewRequest:[1321],on_ReviewRequestRemovedEvent:[1324],on_ReviewRequestedEvent:[1325],on_SavedReply:[1338],on_SecurityAdvisory:[1347],on_SponsorsActivity:[1399],on_SponsorsListing:[1409],on_SponsorsListingFeaturedItem:[1411],on_SponsorsTier:[1413],on_Sponsorship:[1419],on_SponsorshipNewsletter:[1422],on_Status:[1445],on_StatusCheckRollup:[1448],on_StatusContext:[1452],on_SubIssueAddedEvent:[1457],on_SubIssueRemovedEvent:[1458],on_SubscribedEvent:[1467],on_Tag:[1473],on_Team:[1476],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],on_Topic:[1506],on_TransferredEvent:[1514],on_Tree:[1515],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnmarkedAsDuplicateEvent:[1550],on_UnpinnedEvent:[1557],on_UnsubscribedEvent:[1560],on_User:[1697],on_UserBlockedEvent:[1699],on_UserContentEdit:[1701],on_UserList:[1706],on_UserNamespaceRepository:[1713],on_UserStatus:[1716],on_VerifiableDomain:[1722],on_Workflow:[1732],on_WorkflowRun:[1735],on_WorkflowRunFile:[1738],__typename:[1455]},NotificationRestrictionSettingValue:{},OIDCProvider:{enterprise:[471],externalIdentities:[551,{membersOnly:[104],login:[1455],userName:[1455],after:[1455],before:[1455],first:[609],last:[609]}],id:[605],providerType:[791],tenantId:[1455],__typename:[1455]},OIDCProviderType:{},OauthApplicationAuditEntryData:{oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],on_OauthApplicationCreateAuditEntry:[793],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],__typename:[1455]},OauthApplicationCreateAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],applicationUrl:[1518],callbackUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],rateLimit:[609],state:[794],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OauthApplicationCreateAuditEntryState:{},OperationType:{},OrderDirection:{},OrgAddBillingManagerAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],invitationEmail:[1455],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgAddMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],permission:[799],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgAddMemberAuditEntryPermission:{},OrgBlockUserAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],blockedUser:[1697],blockedUserName:[1455],blockedUserResourcePath:[1518],blockedUserUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgConfigDisableCollaboratorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgConfigEnableCollaboratorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgCreateAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],billingPlan:[804],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgCreateAuditEntryBillingPlan:{},OrgDisableOauthAppRestrictionsAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgDisableSamlAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],digestMethodUrl:[1518],id:[605],issuerUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],signatureMethodUrl:[1518],singleSignOnUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgDisableTwoFactorRequirementAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgEnableOauthAppRestrictionsAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgEnableSamlAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],digestMethodUrl:[1518],id:[605],issuerUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],signatureMethodUrl:[1518],singleSignOnUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgEnableTwoFactorRequirementAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgEnterpriseOwnerOrder:{field:[812],direction:[796],__typename:[1455]},OrgEnterpriseOwnerOrderField:{},OrgInviteMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],email:[1455],id:[605],operationType:[795],organization:[841],organizationInvitation:[851],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgInviteToBusinessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgOauthAppAccessApprovedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgOauthAppAccessBlockedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgOauthAppAccessDeniedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgOauthAppAccessRequestedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgOauthAppAccessUnblockedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],oauthApplicationName:[1455],oauthApplicationResourcePath:[1518],oauthApplicationUrl:[1518],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgRemoveBillingManagerAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],reason:[821],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgRemoveBillingManagerAuditEntryReason:{},OrgRemoveMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],membershipTypes:[823],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],reason:[824],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgRemoveMemberAuditEntryMembershipType:{},OrgRemoveMemberAuditEntryReason:{},OrgRemoveOutsideCollaboratorAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],membershipTypes:[826],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],reason:[827],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgRemoveOutsideCollaboratorAuditEntryMembershipType:{},OrgRemoveOutsideCollaboratorAuditEntryReason:{},OrgRestoreMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],restoredCustomEmailRoutingsCount:[609],restoredIssueAssignmentsCount:[609],restoredMemberships:[829],restoredMembershipsCount:[609],restoredRepositoriesCount:[609],restoredRepositoryStarsCount:[609],restoredRepositoryWatchesCount:[609],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgRestoreMemberAuditEntryMembership:{on_OrgRestoreMemberMembershipOrganizationAuditEntryData:[830],on_OrgRestoreMemberMembershipRepositoryAuditEntryData:[831],on_OrgRestoreMemberMembershipTeamAuditEntryData:[832],on_OrganizationAuditEntryData:[844],on_RepositoryAuditEntryData:[1209],on_TeamAuditEntryData:[1479],__typename:[1455]},OrgRestoreMemberMembershipOrganizationAuditEntryData:{organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],__typename:[1455]},OrgRestoreMemberMembershipRepositoryAuditEntryData:{repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],__typename:[1455]},OrgRestoreMemberMembershipTeamAuditEntryData:{team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],__typename:[1455]},OrgUnblockUserAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],blockedUser:[1697],blockedUserName:[1455],blockedUserResourcePath:[1518],blockedUserUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgUpdateDefaultRepositoryPermissionAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],permission:[835],permissionWas:[835],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgUpdateDefaultRepositoryPermissionAuditEntryPermission:{},OrgUpdateMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],permission:[837],permissionWas:[837],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},OrgUpdateMemberAuditEntryPermission:{},OrgUpdateMemberRepositoryCreationPermissionAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],canCreateRepositories:[104],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[839],__typename:[1455]},OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility:{},OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],canInviteOutsideCollaboratorsToRepositories:[104],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},Organization:{announcementBanner:[64],anyPinnableItems:[104,{type:[908]}],archivedAt:[330],auditLog:[843,{after:[1455],before:[1455],first:[609],last:[609],query:[1455],orderBy:[83]}],avatarUrl:[1518,{size:[609]}],createdAt:[330],databaseId:[609],description:[1455],descriptionHTML:[1455],domains:[1723,{after:[1455],before:[1455],first:[609],last:[609],isVerified:[104],isApproved:[104],orderBy:[1725]}],email:[1455],enterpriseOwners:[848,{query:[1455],organizationRole:[1331],orderBy:[811],after:[1455],before:[1455],first:[609],last:[609]}],estimatedNextSponsorsPayoutInCents:[609],hasSponsorsListing:[104],id:[605],interactionAbility:[1230],ipAllowListEnabledSetting:[614],ipAllowListEntries:[616,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[618]}],ipAllowListForInstalledAppsEnabledSetting:[620],isSponsoredBy:[104,{accountLogin:[1455,`String!`]}],isSponsoringViewer:[104],isVerified:[104],issueFields:[663,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[647]}],issueTypes:[684,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[686]}],itemShowcase:[927],lifetimeReceivedSponsorshipValues:[1385,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1387]}],location:[1455],login:[1455],mannequins:[720,{after:[1455],before:[1455],first:[609],last:[609],login:[1455],orderBy:[722]}],memberStatuses:[1717,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1719]}],membersCanForkPrivateRepositories:[104],membersWithRole:[857,{after:[1455],before:[1455],first:[609],last:[609]}],monthlyEstimatedSponsorsIncomeInCents:[609],name:[1455],newTeamResourcePath:[1518],newTeamUrl:[1518],notificationDeliveryRestrictionEnabledSetting:[789],organizationBillingEmail:[1455],packages:[873,{after:[1455],before:[1455],first:[609],last:[609],names:[1455,`[String]`],repositoryId:[605],packageType:[885],orderBy:[880]}],pendingMembers:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],pinnableItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItemsRemaining:[609],project:[929,{number:[609,`Int!`]}],projectV2:[950,{number:[609,`Int!`]}],projects:[942,{orderBy:[944],search:[1455],states:[948,`[ProjectState!]`],after:[1455],before:[1455],first:[609],last:[609]}],projectsResourcePath:[1518],projectsUrl:[1518],projectsV2:[955,{query:[1455],orderBy:[1003],minPermissionLevel:[1006],after:[1455],before:[1455],first:[609],last:[609]}],recentProjects:[955,{after:[1455],before:[1455],first:[609],last:[609]}],repositories:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609],isArchived:[104],isFork:[104]}],repository:[1207,{name:[1455,`String!`],followRenames:[104]}],repositoryCustomProperties:[1218,{after:[1455],before:[1455],first:[609],last:[609]}],repositoryCustomProperty:[1217,{propertyName:[1455,`String!`]}],repositoryDiscussionComments:[444,{after:[1455],before:[1455],first:[609],last:[609],repositoryId:[605],onlyAnswers:[104]}],repositoryDiscussions:[446,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[448],repositoryId:[605],answered:[104],states:[456,`[DiscussionState!]`]}],repositoryMigrations:[1241,{after:[1455],before:[1455],first:[609],last:[609],state:[770],repositoryName:[1455],orderBy:[1243]}],requiresTwoFactorAuthentication:[104],resourcePath:[1518],ruleset:[1266,{databaseId:[609,`Int!`],includeParents:[104]}],rulesets:[1272,{after:[1455],before:[1455],first:[609],last:[609],includeParents:[104],targets:[1274,`[RepositoryRulesetTarget!]`]}],samlIdentityProvider:[850],sponsoring:[1389,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1391]}],sponsors:[1389,{after:[1455],before:[1455],first:[609],last:[609],tierId:[605],orderBy:[1391]}],sponsorsActivities:[1401,{after:[1455],before:[1455],first:[609],last:[609],period:[1405],since:[330],until:[330],orderBy:[1403],actions:[1400,`[SponsorsActivityAction!]`],includeAsSponsor:[104],includePrivate:[104]}],sponsorsListing:[1409],sponsorshipForViewerAsSponsor:[1419,{activeOnly:[104]}],sponsorshipForViewerAsSponsorable:[1419,{activeOnly:[104]}],sponsorshipNewsletters:[1423,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1425]}],sponsorshipsAsMaintainer:[1420,{after:[1455],before:[1455],first:[609],last:[609],includePrivate:[104],orderBy:[1427],activeOnly:[104]}],sponsorshipsAsSponsor:[1420,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1427],maintainerLogins:[1455,`[String!]`],activeOnly:[104]}],team:[1476,{slug:[1455,`String!`]}],teams:[1481,{privacy:[1492],notificationSetting:[1489],role:[1501],query:[1455],userLogins:[1455,`[String!]`],orderBy:[1490],ldapMapped:[104],rootTeamsOnly:[104],after:[1455],before:[1455],first:[609],last:[609]}],teamsResourcePath:[1518],teamsUrl:[1518],totalSponsorshipAmountAsSponsorInCents:[609,{since:[330],until:[330],sponsorableLogins:[1455,`[String!]`]}],twitterUsername:[1455],updatedAt:[330],url:[1518],viewerCanAdminister:[104],viewerCanChangePinnedItems:[104],viewerCanCreateProjects:[104],viewerCanCreateRepositories:[104],viewerCanCreateTeams:[104],viewerCanSponsor:[104],viewerIsAMember:[104],viewerIsFollowing:[104],viewerIsSponsoring:[104],webCommitSignoffRequired:[104],websiteUrl:[1518],__typename:[1455]},OrganizationAuditEntry:{on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_OauthApplicationCreateAuditEntry:[793],on_OrgAddBillingManagerAuditEntry:[797],on_OrgAddMemberAuditEntry:[798],on_OrgBlockUserAuditEntry:[800],on_OrgConfigDisableCollaboratorsOnlyAuditEntry:[801],on_OrgConfigEnableCollaboratorsOnlyAuditEntry:[802],on_OrgCreateAuditEntry:[803],on_OrgDisableOauthAppRestrictionsAuditEntry:[805],on_OrgDisableSamlAuditEntry:[806],on_OrgDisableTwoFactorRequirementAuditEntry:[807],on_OrgEnableOauthAppRestrictionsAuditEntry:[808],on_OrgEnableSamlAuditEntry:[809],on_OrgEnableTwoFactorRequirementAuditEntry:[810],on_OrgInviteMemberAuditEntry:[813],on_OrgInviteToBusinessAuditEntry:[814],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],on_OrgRemoveBillingManagerAuditEntry:[820],on_OrgRemoveMemberAuditEntry:[822],on_OrgRemoveOutsideCollaboratorAuditEntry:[825],on_OrgRestoreMemberAuditEntry:[828],on_OrgUnblockUserAuditEntry:[833],on_OrgUpdateDefaultRepositoryPermissionAuditEntry:[834],on_OrgUpdateMemberAuditEntry:[836],on_OrgUpdateMemberRepositoryCreationPermissionAuditEntry:[838],on_OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:[840],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],on_AuditEntry:[81],on_EnterpriseAuditEntryData:[481],on_Node:[788],on_OrganizationAuditEntryData:[844],on_OauthApplicationAuditEntryData:[792],on_RepositoryAuditEntryData:[1209],on_TopicAuditEntryData:[1507],on_TeamAuditEntryData:[1479],__typename:[1455]},OrganizationAuditEntryConnection:{edges:[845],nodes:[842],pageInfo:[892],totalCount:[609],__typename:[1455]},OrganizationAuditEntryData:{organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_OauthApplicationCreateAuditEntry:[793],on_OrgAddBillingManagerAuditEntry:[797],on_OrgAddMemberAuditEntry:[798],on_OrgBlockUserAuditEntry:[800],on_OrgConfigDisableCollaboratorsOnlyAuditEntry:[801],on_OrgConfigEnableCollaboratorsOnlyAuditEntry:[802],on_OrgCreateAuditEntry:[803],on_OrgDisableOauthAppRestrictionsAuditEntry:[805],on_OrgDisableSamlAuditEntry:[806],on_OrgDisableTwoFactorRequirementAuditEntry:[807],on_OrgEnableOauthAppRestrictionsAuditEntry:[808],on_OrgEnableSamlAuditEntry:[809],on_OrgEnableTwoFactorRequirementAuditEntry:[810],on_OrgInviteMemberAuditEntry:[813],on_OrgInviteToBusinessAuditEntry:[814],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],on_OrgRemoveBillingManagerAuditEntry:[820],on_OrgRemoveMemberAuditEntry:[822],on_OrgRemoveOutsideCollaboratorAuditEntry:[825],on_OrgRestoreMemberAuditEntry:[828],on_OrgRestoreMemberMembershipOrganizationAuditEntryData:[830],on_OrgUnblockUserAuditEntry:[833],on_OrgUpdateDefaultRepositoryPermissionAuditEntry:[834],on_OrgUpdateMemberAuditEntry:[836],on_OrgUpdateMemberRepositoryCreationPermissionAuditEntry:[838],on_OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:[840],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],__typename:[1455]},OrganizationAuditEntryEdge:{cursor:[1455],node:[842],__typename:[1455]},OrganizationConnection:{edges:[847],nodes:[841],pageInfo:[892],totalCount:[609],__typename:[1455]},OrganizationEdge:{cursor:[1455],node:[841],__typename:[1455]},OrganizationEnterpriseOwnerConnection:{edges:[849],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},OrganizationEnterpriseOwnerEdge:{cursor:[1455],node:[1697],organizationRole:[1331],__typename:[1455]},OrganizationIdentityProvider:{digestMethod:[1518],externalIdentities:[551,{membersOnly:[104],login:[1455],userName:[1455],after:[1455],before:[1455],first:[609],last:[609]}],id:[605],idpCertificate:[1744],issuer:[1455],organization:[841],signatureMethod:[1518],ssoUrl:[1518],__typename:[1455]},OrganizationInvitation:{createdAt:[330],email:[1455],id:[605],invitationSource:[855],invitationType:[856],invitee:[1697],inviter:[1697],inviterActor:[1697],organization:[841],role:[854],__typename:[1455]},OrganizationInvitationConnection:{edges:[853],nodes:[851],pageInfo:[892],totalCount:[609],__typename:[1455]},OrganizationInvitationEdge:{cursor:[1455],node:[851],__typename:[1455]},OrganizationInvitationRole:{},OrganizationInvitationSource:{},OrganizationInvitationType:{},OrganizationMemberConnection:{edges:[858],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},OrganizationMemberEdge:{cursor:[1455],hasTwoFactorEnabled:[104],node:[1697],role:[859],__typename:[1455]},OrganizationMemberRole:{},OrganizationMembersCanCreateRepositoriesSettingValue:{},OrganizationMigration:{createdAt:[330],databaseId:[1455],failureReason:[1455],id:[605],remainingRepositoriesCount:[609],sourceOrgName:[1455],sourceOrgUrl:[1518],state:[862],targetOrgName:[1455],totalRepositoriesCount:[609],__typename:[1455]},OrganizationMigrationState:{},OrganizationOrUser:{on_Organization:[841],on_User:[1697],on_Actor:[12],on_MemberStatusable:[742],on_Node:[788],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],on_Agentic:[63],__typename:[1455]},OrganizationOrder:{field:[865],direction:[796],__typename:[1455]},OrganizationOrderField:{},OrganizationPropertyConditionTarget:{exclude:[868],include:[868],__typename:[1455]},OrganizationPropertyConditionTargetInput:{exclude:[869],include:[869],__typename:[1455]},OrganizationPropertyTargetDefinition:{name:[1455],propertyValues:[1455],__typename:[1455]},OrganizationPropertyTargetDefinitionInput:{name:[1455],propertyValues:[1455],__typename:[1455]},OrganizationTeamsHovercardContext:{message:[1455],octicon:[1455],relevantTeams:[1481,{after:[1455],before:[1455],first:[609],last:[609]}],teamsResourcePath:[1518],teamsUrl:[1518],totalTeamCount:[609],__typename:[1455]},OrganizationsHovercardContext:{message:[1455],octicon:[1455],relevantOrganizations:[846,{orderBy:[864],after:[1455],before:[1455],first:[609],last:[609]}],totalOrganizationCount:[609],__typename:[1455]},Package:{id:[605],latestVersion:[886],name:[1455],packageType:[885],repository:[1207],statistics:[883],version:[886,{version:[1455,`String!`]}],versions:[887,{orderBy:[889],after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},PackageConnection:{edges:[874],nodes:[872],pageInfo:[892],totalCount:[609],__typename:[1455]},PackageEdge:{cursor:[1455],node:[872],__typename:[1455]},PackageFile:{id:[605],md5:[1455],name:[1455],packageVersion:[886],sha1:[1455],sha256:[1455],size:[609],updatedAt:[330],url:[1518],__typename:[1455]},PackageFileConnection:{edges:[877],nodes:[875],pageInfo:[892],totalCount:[609],__typename:[1455]},PackageFileEdge:{cursor:[1455],node:[875],__typename:[1455]},PackageFileOrder:{field:[879],direction:[796],__typename:[1455]},PackageFileOrderField:{},PackageOrder:{field:[881],direction:[796],__typename:[1455]},PackageOrderField:{},PackageOwner:{id:[605],packages:[873,{after:[1455],before:[1455],first:[609],last:[609],names:[1455,`[String]`],repositoryId:[605],packageType:[885],orderBy:[880]}],on_Organization:[841],on_Repository:[1207],on_User:[1697],__typename:[1455]},PackageStatistics:{downloadsTotalCount:[609],__typename:[1455]},PackageTag:{id:[605],name:[1455],version:[886],__typename:[1455]},PackageType:{},PackageVersion:{files:[876,{orderBy:[878],after:[1455],before:[1455],first:[609],last:[609]}],id:[605],package:[872],platform:[1455],preRelease:[104],readme:[1455],release:[1130],statistics:[891],summary:[1455],version:[1455],__typename:[1455]},PackageVersionConnection:{edges:[888],nodes:[886],pageInfo:[892],totalCount:[609],__typename:[1455]},PackageVersionEdge:{cursor:[1455],node:[886],__typename:[1455]},PackageVersionOrder:{field:[890],direction:[796],__typename:[1455]},PackageVersionOrderField:{},PackageVersionStatistics:{downloadsTotalCount:[609],__typename:[1455]},PageInfo:{endCursor:[1455],hasNextPage:[104],hasPreviousPage:[104],startCursor:[1455],__typename:[1455]},ParentIssueAddedEvent:{actor:[12],createdAt:[330],id:[605],parent:[623],__typename:[1455]},ParentIssueRemovedEvent:{actor:[12],createdAt:[330],id:[605],parent:[623],__typename:[1455]},PatchStatus:{},PermissionGranter:{on_Organization:[841],on_Repository:[1207],on_Team:[1476],on_Actor:[12],on_MemberStatusable:[742],on_Node:[788],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],on_RepositoryInfo:[1229],on_Starrable:[1438],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],__typename:[1455]},PermissionSource:{organization:[841],permission:[333],roleName:[1455],source:[896],__typename:[1455]},PinEnvironmentInput:{clientMutationId:[1455],environmentId:[605],pinned:[104],__typename:[1455]},PinEnvironmentPayload:{clientMutationId:[1455],environment:[543],pinnedEnvironment:[914],__typename:[1455]},PinIssueCommentInput:{clientMutationId:[1455],issueCommentId:[605],__typename:[1455]},PinIssueCommentPayload:{clientMutationId:[1455],issueComment:[625],__typename:[1455]},PinIssueInput:{clientMutationId:[1455],issueId:[605],__typename:[1455]},PinIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},Pinnable:{isPinned:[104],pinnedAt:[330],pinnedBy:[1697],viewerCanPin:[104],viewerCanUnpin:[104],on_IssueComment:[625],__typename:[1455]},PinnableItem:{on_Gist:[573],on_Repository:[1207],on_Node:[788],on_Starrable:[1438],on_UniformResourceLocatable:[1530],on_PackageOwner:[882],on_ProjectOwner:[946],on_ProjectV2Recent:[1007],on_RepositoryInfo:[1229],on_Subscribable:[1465],__typename:[1455]},PinnableItemConnection:{edges:[907],nodes:[905],pageInfo:[892],totalCount:[609],__typename:[1455]},PinnableItemEdge:{cursor:[1455],node:[905],__typename:[1455]},PinnableItemType:{},PinnedDiscussion:{createdAt:[330],databaseId:[609],discussion:[438],gradientStopColors:[1455],id:[605],pattern:[913],pinnedBy:[12],preconfiguredGradient:[912],repository:[1207],updatedAt:[330],__typename:[1455]},PinnedDiscussionConnection:{edges:[911],nodes:[909],pageInfo:[892],totalCount:[609],__typename:[1455]},PinnedDiscussionEdge:{cursor:[1455],node:[909],__typename:[1455]},PinnedDiscussionGradient:{},PinnedDiscussionPattern:{},PinnedEnvironment:{createdAt:[330],databaseId:[609],environment:[543],id:[605],position:[609],repository:[1207],__typename:[1455]},PinnedEnvironmentConnection:{edges:[916],nodes:[914],pageInfo:[892],totalCount:[609],__typename:[1455]},PinnedEnvironmentEdge:{cursor:[1455],node:[914],__typename:[1455]},PinnedEnvironmentOrder:{field:[918],direction:[796],__typename:[1455]},PinnedEnvironmentOrderField:{},PinnedEvent:{actor:[12],createdAt:[330],id:[605],issue:[623],__typename:[1455]},PinnedIssue:{databaseId:[609],fullDatabaseId:[96],id:[605],issue:[623],pinnedBy:[12],repository:[1207],__typename:[1455]},PinnedIssueComment:{databaseId:[609],fullDatabaseId:[96],id:[605],issue:[623],issueComment:[625],pinnedAt:[330],pinnedBy:[12],__typename:[1455]},PinnedIssueConnection:{edges:[923],nodes:[920],pageInfo:[892],totalCount:[609],__typename:[1455]},PinnedIssueEdge:{cursor:[1455],node:[920],__typename:[1455]},PreciseDateTime:{},PrivateRepositoryForkingDisableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},PrivateRepositoryForkingEnableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},ProfileItemShowcase:{hasPinnedItems:[104],items:[906,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},ProfileOwner:{anyPinnableItems:[104,{type:[908]}],email:[1455],id:[605],itemShowcase:[927],location:[1455],login:[1455],name:[1455],pinnableItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItemsRemaining:[609],viewerCanChangePinnedItems:[104],websiteUrl:[1518],on_Organization:[841],on_User:[1697],__typename:[1455]},Project:{body:[1455],bodyHTML:[599],closed:[104],closedAt:[330],columns:[938,{after:[1455],before:[1455],first:[609],last:[609]}],createdAt:[330],creator:[12],databaseId:[609],id:[605],name:[1455],number:[609],owner:[946],pendingCards:[932,{after:[1455],before:[1455],first:[609],last:[609],archivedStates:[931,`[ProjectCardArchivedState]`]}],progress:[947],resourcePath:[1518],state:[948],updatedAt:[330],url:[1518],viewerCanClose:[104],viewerCanReopen:[104],viewerCanUpdate:[104],__typename:[1455]},ProjectCard:{column:[937],content:[935],createdAt:[330],creator:[12],databaseId:[609],id:[605],isArchived:[104],note:[1455],project:[929],resourcePath:[1518],state:[936],updatedAt:[330],url:[1518],__typename:[1455]},ProjectCardArchivedState:{},ProjectCardConnection:{edges:[933],nodes:[930],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectCardEdge:{cursor:[1455],node:[930],__typename:[1455]},ProjectCardImport:{repository:[1455],number:[609],__typename:[1455]},ProjectCardItem:{on_Issue:[623],on_PullRequest:[1046],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Node:[788],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},ProjectCardState:{},ProjectColumn:{cards:[932,{after:[1455],before:[1455],first:[609],last:[609],archivedStates:[931,`[ProjectCardArchivedState]`]}],createdAt:[330],databaseId:[609],id:[605],name:[1455],project:[929],purpose:[941],resourcePath:[1518],updatedAt:[330],url:[1518],__typename:[1455]},ProjectColumnConnection:{edges:[939],nodes:[937],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectColumnEdge:{cursor:[1455],node:[937],__typename:[1455]},ProjectColumnImport:{columnName:[1455],position:[609],issues:[934],__typename:[1455]},ProjectColumnPurpose:{},ProjectConnection:{edges:[943],nodes:[929],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectEdge:{cursor:[1455],node:[929],__typename:[1455]},ProjectOrder:{field:[945],direction:[796],__typename:[1455]},ProjectOrderField:{},ProjectOwner:{id:[605],project:[929,{number:[609,`Int!`]}],projects:[942,{orderBy:[944],search:[1455],states:[948,`[ProjectState!]`],after:[1455],before:[1455],first:[609],last:[609]}],projectsResourcePath:[1518],projectsUrl:[1518],viewerCanCreateProjects:[104],on_Organization:[841],on_Repository:[1207],on_User:[1697],__typename:[1455]},ProjectProgress:{doneCount:[609],donePercentage:[563],enabled:[104],inProgressCount:[609],inProgressPercentage:[563],todoCount:[609],todoPercentage:[563],__typename:[1455]},ProjectState:{},ProjectTemplate:{},ProjectV2:{closed:[104],closedAt:[330],createdAt:[330],creator:[12],databaseId:[609],field:[961,{name:[1455,`String!`]}],fields:[962,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],fullDatabaseId:[96],id:[605],items:[973,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[994],query:[1455]}],number:[609],owner:[1005],public:[104],readme:[1455],repositories:[1214,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1249]}],resourcePath:[1518],shortDescription:[1455],statusUpdates:[1022,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1020]}],teams:[1481,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1490]}],template:[104],title:[1455],updatedAt:[330],url:[1518],view:[1026,{number:[609,`Int!`]}],viewerCanClose:[104],viewerCanReopen:[104],viewerCanUpdate:[104],views:[1027,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1030]}],workflow:[1032,{number:[609,`Int!`]}],workflows:[1033,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1035]}],__typename:[1455]},ProjectV2Actor:{on_Team:[1476],on_User:[1697],on_MemberStatusable:[742],on_Node:[788],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},ProjectV2ActorConnection:{edges:[953],nodes:[951],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2ActorEdge:{cursor:[1455],node:[951],__typename:[1455]},ProjectV2Collaborator:{userId:[605],teamId:[605],role:[1008],__typename:[1455]},ProjectV2Connection:{edges:[957],nodes:[950],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2CustomFieldType:{},ProjectV2Edge:{cursor:[1455],node:[950],__typename:[1455]},ProjectV2Event:{project:[950],wasAutomated:[104],on_AddedToProjectV2Event:[61],on_ConvertedFromDraftEvent:[231],on_ProjectV2ItemStatusChangedEvent:[996],on_RemovedFromProjectV2Event:[1166],__typename:[1455]},ProjectV2Field:{createdAt:[330],dataType:[968],databaseId:[609],id:[605],name:[1455],project:[950],updatedAt:[330],__typename:[1455]},ProjectV2FieldCommon:{createdAt:[330],dataType:[968],databaseId:[609],id:[605],name:[1455],project:[950],updatedAt:[330],on_ProjectV2Field:[959],on_ProjectV2IterationField:[999],on_ProjectV2SingleSelectField:[1009],__typename:[1455]},ProjectV2FieldConfiguration:{on_ProjectV2Field:[959],on_ProjectV2IterationField:[999],on_ProjectV2SingleSelectField:[1009],on_Node:[788],on_ProjectV2FieldCommon:[960],__typename:[1455]},ProjectV2FieldConfigurationConnection:{edges:[963],nodes:[961],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2FieldConfigurationEdge:{cursor:[1455],node:[961],__typename:[1455]},ProjectV2FieldConnection:{edges:[965],nodes:[959],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2FieldEdge:{cursor:[1455],node:[959],__typename:[1455]},ProjectV2FieldOrder:{field:[967],direction:[796],__typename:[1455]},ProjectV2FieldOrderField:{},ProjectV2FieldType:{},ProjectV2FieldValue:{text:[1455],number:[563],date:[329],singleSelectOptionId:[1455],iterationId:[1455],__typename:[1455]},ProjectV2Filters:{state:[1019],__typename:[1455]},ProjectV2IssueFieldValues:{on_IssueFieldDateValue:[644],on_IssueFieldNumberValue:[646],on_IssueFieldSingleSelectValue:[654],on_IssueFieldTextValue:[656],on_IssueFieldValueCommon:[658],on_Node:[788],__typename:[1455]},ProjectV2Item:{content:[974],createdAt:[330],creator:[12],databaseId:[609],fieldValueByName:[987,{name:[1455,`String!`]}],fieldValues:[989,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[991]}],fullDatabaseId:[96],id:[605],isArchived:[104],project:[950],type:[997],updatedAt:[330],__typename:[1455]},ProjectV2ItemConnection:{edges:[975],nodes:[972],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2ItemContent:{on_DraftIssue:[463],on_Issue:[623],on_PullRequest:[1046],on_Node:[788],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},ProjectV2ItemEdge:{cursor:[1455],node:[972],__typename:[1455]},ProjectV2ItemFieldDateValue:{createdAt:[330],creator:[12],databaseId:[609],date:[329],field:[961],id:[605],item:[972],updatedAt:[330],__typename:[1455]},ProjectV2ItemFieldIterationValue:{createdAt:[330],creator:[12],databaseId:[609],duration:[609],field:[961],id:[605],item:[972],iterationId:[1455],startDate:[329],title:[1455],titleHTML:[1455],updatedAt:[330],__typename:[1455]},ProjectV2ItemFieldLabelValue:{field:[961],labels:[691,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},ProjectV2ItemFieldMilestoneValue:{field:[961],milestone:[771],__typename:[1455]},ProjectV2ItemFieldNumberValue:{createdAt:[330],creator:[12],databaseId:[609],field:[961],id:[605],item:[972],number:[563],updatedAt:[330],__typename:[1455]},ProjectV2ItemFieldPullRequestValue:{field:[961],pullRequests:[1056,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1061]}],__typename:[1455]},ProjectV2ItemFieldRepositoryValue:{field:[961],repository:[1207],__typename:[1455]},ProjectV2ItemFieldReviewerValue:{field:[961],reviewers:[1296,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},ProjectV2ItemFieldSingleSelectValue:{color:[1011],createdAt:[330],creator:[12],databaseId:[609],description:[1455],descriptionHTML:[1455],field:[961],id:[605],item:[972],name:[1455],nameHTML:[1455],optionId:[1455],updatedAt:[330],__typename:[1455]},ProjectV2ItemFieldTextValue:{createdAt:[330],creator:[12],databaseId:[609],field:[961],id:[605],item:[972],text:[1455],updatedAt:[330],__typename:[1455]},ProjectV2ItemFieldUserValue:{field:[961],users:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},ProjectV2ItemFieldValue:{on_ProjectV2ItemFieldDateValue:[976],on_ProjectV2ItemFieldIterationValue:[977],on_ProjectV2ItemFieldLabelValue:[978],on_ProjectV2ItemFieldMilestoneValue:[979],on_ProjectV2ItemFieldNumberValue:[980],on_ProjectV2ItemFieldPullRequestValue:[981],on_ProjectV2ItemFieldRepositoryValue:[982],on_ProjectV2ItemFieldReviewerValue:[983],on_ProjectV2ItemFieldSingleSelectValue:[984],on_ProjectV2ItemFieldTextValue:[985],on_ProjectV2ItemFieldUserValue:[986],on_ProjectV2ItemIssueFieldValue:[993],on_Node:[788],on_ProjectV2ItemFieldValueCommon:[988],__typename:[1455]},ProjectV2ItemFieldValueCommon:{createdAt:[330],creator:[12],databaseId:[609],field:[961],id:[605],item:[972],updatedAt:[330],on_ProjectV2ItemFieldDateValue:[976],on_ProjectV2ItemFieldIterationValue:[977],on_ProjectV2ItemFieldNumberValue:[980],on_ProjectV2ItemFieldSingleSelectValue:[984],on_ProjectV2ItemFieldTextValue:[985],__typename:[1455]},ProjectV2ItemFieldValueConnection:{edges:[990],nodes:[987],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2ItemFieldValueEdge:{cursor:[1455],node:[987],__typename:[1455]},ProjectV2ItemFieldValueOrder:{field:[992],direction:[796],__typename:[1455]},ProjectV2ItemFieldValueOrderField:{},ProjectV2ItemIssueFieldValue:{field:[961],issueFieldValue:[971],__typename:[1455]},ProjectV2ItemOrder:{field:[995],direction:[796],__typename:[1455]},ProjectV2ItemOrderField:{},ProjectV2ItemStatusChangedEvent:{actor:[12],createdAt:[330],id:[605],previousStatus:[1455],project:[950],status:[1455],wasAutomated:[104],__typename:[1455]},ProjectV2ItemType:{},ProjectV2Iteration:{startDate:[329],duration:[609],title:[1455],__typename:[1455]},ProjectV2IterationField:{configuration:[1e3],createdAt:[330],dataType:[968],databaseId:[609],id:[605],name:[1455],project:[950],updatedAt:[330],__typename:[1455]},ProjectV2IterationFieldConfiguration:{completedIterations:[1002],duration:[609],iterations:[1002],startDay:[609],__typename:[1455]},ProjectV2IterationFieldConfigurationInput:{startDate:[329],duration:[609],iterations:[998],__typename:[1455]},ProjectV2IterationFieldIteration:{duration:[609],id:[1455],startDate:[329],title:[1455],titleHTML:[1455],__typename:[1455]},ProjectV2Order:{field:[1004],direction:[796],__typename:[1455]},ProjectV2OrderField:{},ProjectV2Owner:{id:[605],projectV2:[950,{number:[609,`Int!`]}],projectsV2:[955,{query:[1455],orderBy:[1003],minPermissionLevel:[1006],after:[1455],before:[1455],first:[609],last:[609]}],on_Issue:[623],on_Organization:[841],on_PullRequest:[1046],on_User:[1697],__typename:[1455]},ProjectV2PermissionLevel:{},ProjectV2Recent:{recentProjects:[955,{after:[1455],before:[1455],first:[609],last:[609]}],on_Organization:[841],on_Repository:[1207],on_User:[1697],__typename:[1455]},ProjectV2Roles:{},ProjectV2SingleSelectField:{createdAt:[330],dataType:[968],databaseId:[609],id:[605],name:[1455],options:[1010,{names:[1455,`[String!]`]}],project:[950],updatedAt:[330],__typename:[1455]},ProjectV2SingleSelectFieldOption:{color:[1011],description:[1455],descriptionHTML:[1455],id:[1455],name:[1455],nameHTML:[1455],__typename:[1455]},ProjectV2SingleSelectFieldOptionColor:{},ProjectV2SingleSelectFieldOptionInput:{id:[1455],name:[1455],color:[1011],description:[1455],__typename:[1455]},ProjectV2SortBy:{direction:[796],field:[959],__typename:[1455]},ProjectV2SortByConnection:{edges:[1015],nodes:[1013],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2SortByEdge:{cursor:[1455],node:[1013],__typename:[1455]},ProjectV2SortByField:{direction:[796],field:[961],__typename:[1455]},ProjectV2SortByFieldConnection:{edges:[1018],nodes:[1016],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2SortByFieldEdge:{cursor:[1455],node:[1016],__typename:[1455]},ProjectV2State:{},ProjectV2StatusOrder:{field:[1024],direction:[796],__typename:[1455]},ProjectV2StatusUpdate:{body:[1455],bodyHTML:[599],createdAt:[330],creator:[12],databaseId:[609],fullDatabaseId:[96],id:[605],project:[950],startDate:[329],status:[1025],targetDate:[329],updatedAt:[330],__typename:[1455]},ProjectV2StatusUpdateConnection:{edges:[1023],nodes:[1021],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2StatusUpdateEdge:{cursor:[1455],node:[1021],__typename:[1455]},ProjectV2StatusUpdateOrderField:{},ProjectV2StatusUpdateStatus:{},ProjectV2View:{createdAt:[330],databaseId:[609],fields:[962,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],filter:[1455],fullDatabaseId:[96],groupBy:[964,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],groupByFields:[962,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],id:[605],layout:[1029],name:[1455],number:[609],project:[950],sortBy:[1014,{after:[1455],before:[1455],first:[609],last:[609]}],sortByFields:[1017,{after:[1455],before:[1455],first:[609],last:[609]}],updatedAt:[330],verticalGroupBy:[964,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],verticalGroupByFields:[962,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],visibleFields:[964,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[966]}],__typename:[1455]},ProjectV2ViewConnection:{edges:[1028],nodes:[1026],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2ViewEdge:{cursor:[1455],node:[1026],__typename:[1455]},ProjectV2ViewLayout:{},ProjectV2ViewOrder:{field:[1031],direction:[796],__typename:[1455]},ProjectV2ViewOrderField:{},ProjectV2Workflow:{createdAt:[330],databaseId:[609],enabled:[104],fullDatabaseId:[96],id:[605],name:[1455],number:[609],project:[950],updatedAt:[330],__typename:[1455]},ProjectV2WorkflowConnection:{edges:[1034],nodes:[1032],pageInfo:[892],totalCount:[609],__typename:[1455]},ProjectV2WorkflowEdge:{cursor:[1455],node:[1032],__typename:[1455]},ProjectV2WorkflowOrder:{field:[1036],direction:[796],__typename:[1455]},ProjectV2WorkflowsOrderField:{},PromoteRepositoryCustomPropertyInput:{clientMutationId:[1455],repositoryCustomPropertyId:[605],__typename:[1455]},PromoteRepositoryCustomPropertyPayload:{clientMutationId:[1455],repositoryCustomProperty:[1217],__typename:[1455]},PropertyTargetDefinition:{name:[1455],propertyValues:[1455],source:[1455],__typename:[1455]},PropertyTargetDefinitionInput:{name:[1455],propertyValues:[1455],source:[1455],__typename:[1455]},PublicKey:{accessedAt:[330],createdAt:[330],fingerprint:[1455],id:[605],isReadOnly:[104],key:[1455],updatedAt:[330],__typename:[1455]},PublicKeyConnection:{edges:[1043],nodes:[1041],pageInfo:[892],totalCount:[609],__typename:[1455]},PublicKeyEdge:{cursor:[1455],node:[1041],__typename:[1455]},PublishSponsorsTierInput:{clientMutationId:[1455],tierId:[605],__typename:[1455]},PublishSponsorsTierPayload:{clientMutationId:[1455],sponsorsTier:[1413],__typename:[1455]},PullRequest:{activeLockReason:[716],additions:[609],assignedActors:[79,{after:[1455],before:[1455],first:[609],last:[609]}],assignees:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],author:[12],authorAssociation:[188],autoMergeRequest:[87],baseRef:[1113],baseRefName:[1455],baseRefOid:[588],baseRepository:[1207],body:[1455],bodyHTML:[599],bodyText:[1455],canBeRebased:[104],changedFiles:[609],checksResourcePath:[1518],checksUrl:[1518],closed:[104],closedAt:[330],closingIssuesReferences:[632,{userLinkedOnly:[104],after:[1455],before:[1455],first:[609],last:[609],orderBy:[667]}],comments:[626,{orderBy:[628],after:[1455],before:[1455],first:[609],last:[609]}],commits:[1054,{after:[1455],before:[1455],first:[609],last:[609]}],createdAt:[330],createdViaEmail:[104],databaseId:[609],deletions:[609],editor:[12],files:[1050,{after:[1455],before:[1455],first:[609],last:[609]}],fullDatabaseId:[96],headRef:[1113],headRefName:[1455],headRefOid:[588],headRepository:[1207],headRepositoryOwner:[1251],hovercard:[603,{includeNotificationContexts:[104]}],id:[605],includesCreatedEdit:[104],isCrossRepository:[104],isDraft:[104],isInMergeQueue:[104],isMergeQueueEnabled:[104],isReadByViewer:[104],labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609]}],lastEditedAt:[330],latestOpinionatedReviews:[1070,{after:[1455],before:[1455],first:[609],last:[609],writersOnly:[104]}],latestReviews:[1070,{after:[1455],before:[1455],first:[609],last:[609]}],locked:[104],maintainerCanModify:[104],mergeCommit:[191],mergeQueue:[753],mergeQueueEntry:[755],mergeStateStatus:[764],mergeable:[765],merged:[104],mergedAt:[330],mergedBy:[12],milestone:[771],number:[609],participants:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],permalink:[1518],potentialMergeCommit:[191],projectCards:[932,{after:[1455],before:[1455],first:[609],last:[609],archivedStates:[931,`[ProjectCardArchivedState]`]}],projectItems:[973,{includeArchived:[104],after:[1455],before:[1455],first:[609],last:[609]}],projectV2:[950,{number:[609,`Int!`]}],projectsV2:[955,{query:[1455],orderBy:[1003],minPermissionLevel:[1006],after:[1455],before:[1455],first:[609],last:[609]}],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],revertResourcePath:[1518],revertUrl:[1518],reviewDecision:[1072],reviewRequests:[1322,{after:[1455],before:[1455],first:[609],last:[609]}],reviewThreads:[1077,{after:[1455],before:[1455],first:[609],last:[609]}],reviews:[1070,{after:[1455],before:[1455],first:[609],last:[609],states:[1075,`[PullRequestReviewState!]`],author:[1455]}],state:[1081],statusCheckRollup:[1448],suggestedActors:[79,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],suggestedReviewerActors:[1471,{after:[1455],before:[1455],first:[609],last:[609],query:[1455]}],suggestedReviewers:[1469],timeline:[1084,{since:[330],after:[1455],before:[1455],first:[609],last:[609]}],timelineItems:[1088,{since:[330],skip:[609],itemTypes:[1090,`[PullRequestTimelineItemsItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],title:[1455],titleHTML:[599],totalCommentsCount:[609],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanApplySuggestion:[104],viewerCanClose:[104],viewerCanDeleteHeadRef:[104],viewerCanDisableAutoMerge:[104],viewerCanEditFiles:[104],viewerCanEnableAutoMerge:[104],viewerCanLabel:[104],viewerCanMergeAsAdmin:[104],viewerCanReact:[104],viewerCanReopen:[104],viewerCanSubscribe:[104],viewerCanUpdate:[104],viewerCanUpdateBranch:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],viewerLatestReview:[1065],viewerLatestReviewRequest:[1321],viewerMergeBodyText:[1455,{mergeType:[1060]}],viewerMergeHeadlineText:[1455,{mergeType:[1060]}],viewerSubscription:[1468],__typename:[1455]},PullRequestAllowedMergeMethods:{},PullRequestBranchUpdateMethod:{},PullRequestChangedFile:{additions:[609],changeType:[895],deletions:[609],path:[1455],viewerViewedState:[562],__typename:[1455]},PullRequestChangedFileConnection:{edges:[1051],nodes:[1049],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestChangedFileEdge:{cursor:[1455],node:[1049],__typename:[1455]},PullRequestCommit:{commit:[191],id:[605],pullRequest:[1046],resourcePath:[1518],url:[1518],__typename:[1455]},PullRequestCommitCommentThread:{comments:[196,{after:[1455],before:[1455],first:[609],last:[609]}],commit:[191],id:[605],path:[1455],position:[609],pullRequest:[1046],repository:[1207],__typename:[1455]},PullRequestCommitConnection:{edges:[1055],nodes:[1052],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestCommitEdge:{cursor:[1455],node:[1052],__typename:[1455]},PullRequestConnection:{edges:[1059],nodes:[1046],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestContributionsByRepository:{contributions:[313,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[222]}],repository:[1207],__typename:[1455]},PullRequestCreationPolicy:{},PullRequestEdge:{cursor:[1455],node:[1046],__typename:[1455]},PullRequestMergeMethod:{},PullRequestOrder:{field:[1062],direction:[796],__typename:[1455]},PullRequestOrderField:{},PullRequestParameters:{allowedMergeMethods:[1047],dismissStaleReviewsOnPush:[104],requireCodeOwnerReview:[104],requireLastPushApproval:[104],requiredApprovingReviewCount:[609],requiredReviewThreadResolution:[104],requiredReviewers:[1301],__typename:[1455]},PullRequestParametersInput:{allowedMergeMethods:[1047],dismissStaleReviewsOnPush:[104],requireCodeOwnerReview:[104],requireLastPushApproval:[104],requiredApprovingReviewCount:[609],requiredReviewThreadResolution:[104],requiredReviewers:[1302],__typename:[1455]},PullRequestReview:{author:[12],authorAssociation:[188],authorCanPushToRepository:[104],body:[1455],bodyHTML:[599],bodyText:[1455],comments:[1067,{after:[1455],before:[1455],first:[609],last:[609]}],commit:[191],createdAt:[330],createdViaEmail:[104],databaseId:[609],editor:[12],fullDatabaseId:[96],id:[605],includesCreatedEdit:[104],isMinimized:[104],lastEditedAt:[330],minimizedReason:[1455],onBehalfOf:[1481,{after:[1455],before:[1455],first:[609],last:[609]}],publishedAt:[330],pullRequest:[1046],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],repository:[1207],resourcePath:[1518],state:[1075],submittedAt:[330],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMinimize:[104],viewerCanReact:[104],viewerCanUnminimize:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],__typename:[1455]},PullRequestReviewComment:{author:[12],authorAssociation:[188],body:[1455],bodyHTML:[599],bodyText:[1455],commit:[191],createdAt:[330],createdViaEmail:[104],databaseId:[609],diffHunk:[1455],draftedAt:[330],editor:[12],fullDatabaseId:[96],id:[605],includesCreatedEdit:[104],isMinimized:[104],lastEditedAt:[330],line:[609],minimizedReason:[1455],originalCommit:[191],originalLine:[609],originalPosition:[609],originalStartLine:[609],outdated:[104],path:[1455],position:[609],publishedAt:[330],pullRequest:[1046],pullRequestReview:[1065],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],replyTo:[1066],repository:[1207],resourcePath:[1518],startLine:[609],state:[1069],subjectType:[1079],updatedAt:[330],url:[1518],userContentEdits:[1702,{after:[1455],before:[1455],first:[609],last:[609]}],viewerCanDelete:[104],viewerCanMinimize:[104],viewerCanReact:[104],viewerCanUnminimize:[104],viewerCanUpdate:[104],viewerCannotUpdateReasons:[189],viewerDidAuthor:[104],__typename:[1455]},PullRequestReviewCommentConnection:{edges:[1068],nodes:[1066],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestReviewCommentEdge:{cursor:[1455],node:[1066],__typename:[1455]},PullRequestReviewCommentState:{},PullRequestReviewConnection:{edges:[1073],nodes:[1065],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestReviewContributionsByRepository:{contributions:[317,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[222]}],repository:[1207],__typename:[1455]},PullRequestReviewDecision:{},PullRequestReviewEdge:{cursor:[1455],node:[1065],__typename:[1455]},PullRequestReviewEvent:{},PullRequestReviewState:{},PullRequestReviewThread:{comments:[1067,{after:[1455],before:[1455],first:[609],last:[609],skip:[609]}],diffSide:[434],id:[605],isCollapsed:[104],isOutdated:[104],isResolved:[104],line:[609],originalLine:[609],originalStartLine:[609],path:[1455],pullRequest:[1046],repository:[1207],resolvedBy:[1697],startDiffSide:[434],startLine:[609],subjectType:[1079],viewerCanReply:[104],viewerCanResolve:[104],viewerCanUnresolve:[104],__typename:[1455]},PullRequestReviewThreadConnection:{edges:[1078],nodes:[1076],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestReviewThreadEdge:{cursor:[1455],node:[1076],__typename:[1455]},PullRequestReviewThreadSubjectType:{},PullRequestRevisionMarker:{createdAt:[330],lastSeenCommit:[191],pullRequest:[1046],__typename:[1455]},PullRequestState:{},PullRequestTemplate:{body:[1455],filename:[1455],repository:[1207],__typename:[1455]},PullRequestThread:{comments:[1067,{after:[1455],before:[1455],first:[609],last:[609],skip:[609]}],diffSide:[434],id:[605],isCollapsed:[104],isOutdated:[104],isResolved:[104],line:[609],path:[1455],pullRequest:[1046],repository:[1207],resolvedBy:[1697],startDiffSide:[434],startLine:[609],subjectType:[1079],viewerCanReply:[104],viewerCanResolve:[104],viewerCanUnresolve:[104],__typename:[1455]},PullRequestTimelineConnection:{edges:[1086],nodes:[1085],pageInfo:[892],totalCount:[609],__typename:[1455]},PullRequestTimelineItem:{on_AssignedEvent:[77],on_BaseRefDeletedEvent:[94],on_BaseRefForcePushedEvent:[95],on_ClosedEvent:[179],on_Commit:[191],on_CommitCommentThread:[198],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_DeployedEvent:[406],on_DeploymentEnvironmentChangedEvent:[410],on_HeadRefDeletedEvent:[600],on_HeadRefForcePushedEvent:[601],on_HeadRefRestoredEvent:[602],on_IssueComment:[625],on_LabeledEvent:[696],on_LockedEvent:[718],on_MergedEvent:[766],on_MilestonedEvent:[778],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],on_PullRequestReviewThread:[1076],on_ReferencedEvent:[1122],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_ReviewDismissedEvent:[1320],on_ReviewRequestRemovedEvent:[1324],on_ReviewRequestedEvent:[1325],on_SubscribedEvent:[1467],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnsubscribedEvent:[1560],on_UserBlockedEvent:[1699],on_Node:[788],on_UniformResourceLocatable:[1530],on_GitObject:[587],on_Subscribable:[1465],on_RepositoryNode:[1248],on_Comment:[187],on_Deletable:[334],on_Minimizable:[779],on_Pinnable:[904],on_Reactable:[1099],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},PullRequestTimelineItemEdge:{cursor:[1455],node:[1085],__typename:[1455]},PullRequestTimelineItems:{on_AddedToMergeQueueEvent:[59],on_AddedToProjectEvent:[60],on_AddedToProjectV2Event:[61],on_AssignedEvent:[77],on_AutoMergeDisabledEvent:[85],on_AutoMergeEnabledEvent:[86],on_AutoRebaseEnabledEvent:[88],on_AutoSquashEnabledEvent:[89],on_AutomaticBaseChangeFailedEvent:[90],on_AutomaticBaseChangeSucceededEvent:[91],on_BaseRefChangedEvent:[93],on_BaseRefDeletedEvent:[94],on_BaseRefForcePushedEvent:[95],on_BlockedByAddedEvent:[100],on_BlockedByRemovedEvent:[101],on_BlockingAddedEvent:[102],on_BlockingRemovedEvent:[103],on_ClosedEvent:[179],on_CommentDeletedEvent:[190],on_ConnectedEvent:[214],on_ConvertToDraftEvent:[230],on_ConvertedFromDraftEvent:[231],on_ConvertedNoteToIssueEvent:[232],on_ConvertedToDiscussionEvent:[233],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_DeployedEvent:[406],on_DeploymentEnvironmentChangedEvent:[410],on_DisconnectedEvent:[437],on_HeadRefDeletedEvent:[600],on_HeadRefForcePushedEvent:[601],on_HeadRefRestoredEvent:[602],on_IssueComment:[625],on_IssueCommentPinnedEvent:[630],on_IssueCommentUnpinnedEvent:[631],on_IssueFieldAddedEvent:[638],on_IssueFieldChangedEvent:[639],on_IssueFieldRemovedEvent:[649],on_IssueTypeAddedEvent:[681],on_IssueTypeChangedEvent:[682],on_IssueTypeRemovedEvent:[688],on_LabeledEvent:[696],on_LockedEvent:[718],on_MarkedAsDuplicateEvent:[732],on_MentionedEvent:[746],on_MergedEvent:[766],on_MilestonedEvent:[778],on_MovedColumnsInProjectEvent:[786],on_ParentIssueAddedEvent:[893],on_ParentIssueRemovedEvent:[894],on_PinnedEvent:[919],on_ProjectV2ItemStatusChangedEvent:[996],on_PullRequestCommit:[1052],on_PullRequestCommitCommentThread:[1053],on_PullRequestReview:[1065],on_PullRequestReviewThread:[1076],on_PullRequestRevisionMarker:[1080],on_ReadyForReviewEvent:[1112],on_ReferencedEvent:[1122],on_RemovedFromMergeQueueEvent:[1164],on_RemovedFromProjectEvent:[1165],on_RemovedFromProjectV2Event:[1166],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_ReviewDismissedEvent:[1320],on_ReviewRequestRemovedEvent:[1324],on_ReviewRequestedEvent:[1325],on_SubIssueAddedEvent:[1457],on_SubIssueRemovedEvent:[1458],on_SubscribedEvent:[1467],on_TransferredEvent:[1514],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnmarkedAsDuplicateEvent:[1550],on_UnpinnedEvent:[1557],on_UnsubscribedEvent:[1560],on_UserBlockedEvent:[1699],on_Node:[788],on_ProjectV2Event:[958],on_UniformResourceLocatable:[1530],on_Comment:[187],on_Deletable:[334],on_Minimizable:[779],on_Pinnable:[904],on_Reactable:[1099],on_RepositoryNode:[1248],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},PullRequestTimelineItemsConnection:{edges:[1089],filteredCount:[609],nodes:[1087],pageCount:[609],pageInfo:[892],totalCount:[609],updatedAt:[330],__typename:[1455]},PullRequestTimelineItemsEdge:{cursor:[1455],node:[1087],__typename:[1455]},PullRequestTimelineItemsItemType:{},PullRequestUpdateState:{},Push:{id:[605],nextSha:[588],permalink:[1518],previousSha:[588],pusher:[12],repository:[1207],__typename:[1455]},PushAllowance:{actor:[1094],branchProtectionRule:[109],id:[605],__typename:[1455]},PushAllowanceActor:{on_App:[65],on_Team:[1476],on_User:[1697],on_Node:[788],on_MemberStatusable:[742],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},PushAllowanceConnection:{edges:[1096],nodes:[1093],pageInfo:[892],totalCount:[609],__typename:[1455]},PushAllowanceEdge:{cursor:[1455],node:[1093],__typename:[1455]},Query:{_entities:[1746,{representations:[1745,`[_Any!]!`]}],codeOfConduct:[181,{key:[1455,`String!`]}],codesOfConduct:[181],enterprise:[471,{slug:[1455,`String!`],invitationToken:[1455]}],enterpriseAdministratorInvitation:[474,{userLogin:[1455,`String!`],enterpriseSlug:[1455,`String!`],role:[479,`EnterpriseAdministratorRole!`]}],enterpriseAdministratorInvitationByToken:[474,{invitationToken:[1455,`String!`]}],enterpriseMemberInvitation:[495,{userLogin:[1455,`String!`],enterpriseSlug:[1455,`String!`]}],enterpriseMemberInvitationByToken:[495,{invitationToken:[1455,`String!`]}],id:[605],license:[703,{key:[1455,`String!`]}],licenses:[703],marketplaceCategories:[733,{includeCategories:[1455,`[String!]`],excludeEmpty:[104],excludeSubcategories:[104]}],marketplaceCategory:[733,{slug:[1455,`String!`],useTopicAliases:[104]}],marketplaceListing:[734,{slug:[1455,`String!`]}],marketplaceListings:[735,{after:[1455],before:[1455],first:[609],last:[609],categorySlug:[1455],useTopicAliases:[104],viewerCanAdmin:[104],adminId:[605],organizationId:[605],allStates:[104],slugs:[1455,`[String]`],primaryCategoryOnly:[104],withFreeTrialsOnly:[104]}],meta:[586],node:[788,{id:[605,`ID!`]}],nodes:[788,{ids:[605,`[ID!]!`]}],organization:[841,{login:[1455,`String!`]}],rateLimit:[1098,{dryRun:[104]}],relay:[1097],repository:[1207,{owner:[1455,`String!`],name:[1455,`String!`],followRenames:[104]}],repositoryOwner:[1251,{login:[1455,`String!`]}],resource:[1530,{url:[1518,`URI!`]}],search:[1344,{after:[1455],before:[1455],first:[609],last:[609],query:[1455,`String!`],type:[1346,`SearchType!`]}],securityAdvisories:[1349,{orderBy:[1355],identifier:[1353],publishedSince:[330],updatedSince:[330],classifications:[1348,`[SecurityAdvisoryClassification!]`],epssPercentage:[563],epssPercentile:[563],after:[1455],before:[1455],first:[609],last:[609]}],securityAdvisory:[1347,{ghsaId:[1455,`String!`]}],securityVulnerabilities:[1362,{orderBy:[1364],ecosystem:[1350],package:[1455],severities:[1360,`[SecurityAdvisorySeverity!]`],classifications:[1348,`[SecurityAdvisoryClassification!]`],after:[1455],before:[1455],first:[609],last:[609]}],sponsorables:[1395,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1397],onlyDependencies:[104],orgLoginForDependencies:[1455],dependencyEcosystem:[1350],ecosystem:[399]}],topic:[1506,{name:[1455,`String!`]}],user:[1697,{login:[1455,`String!`]}],viewer:[1697],__typename:[1455]},RateLimit:{cost:[609],limit:[609],nodeCount:[609],remaining:[609],resetAt:[330],used:[609],__typename:[1455]},Reactable:{databaseId:[609],id:[605],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],viewerCanReact:[104],on_CommitComment:[195],on_Discussion:[438],on_DiscussionComment:[443],on_Issue:[623],on_IssueComment:[625],on_PullRequest:[1046],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],on_Release:[1130],__typename:[1455]},ReactingUserConnection:{edges:[1101],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},ReactingUserEdge:{cursor:[1455],node:[1697],reactedAt:[330],__typename:[1455]},Reaction:{content:[1104],createdAt:[330],databaseId:[609],id:[605],reactable:[1099],user:[1697],__typename:[1455]},ReactionConnection:{edges:[1105],nodes:[1102],pageInfo:[892],totalCount:[609],viewerHasReacted:[104],__typename:[1455]},ReactionContent:{},ReactionEdge:{cursor:[1455],node:[1102],__typename:[1455]},ReactionGroup:{content:[1104],createdAt:[330],reactors:[1110,{after:[1455],before:[1455],first:[609],last:[609]}],subject:[1099],users:[1100,{after:[1455],before:[1455],first:[609],last:[609]}],viewerHasReacted:[104],__typename:[1455]},ReactionOrder:{field:[1108],direction:[796],__typename:[1455]},ReactionOrderField:{},Reactor:{on_Bot:[105],on_Mannequin:[719],on_Organization:[841],on_User:[1697],on_Actor:[12],on_Node:[788],on_UniformResourceLocatable:[1530],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_Agentic:[63],__typename:[1455]},ReactorConnection:{edges:[1111],nodes:[1109],pageInfo:[892],totalCount:[609],__typename:[1455]},ReactorEdge:{cursor:[1455],node:[1109],reactedAt:[330],__typename:[1455]},ReadyForReviewEvent:{actor:[12],createdAt:[330],id:[605],pullRequest:[1046],resourcePath:[1518],url:[1518],__typename:[1455]},Ref:{associatedPullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],branchProtectionRule:[109],compare:[211,{headRef:[1455,`String!`]}],id:[605],name:[1455],prefix:[1455],refUpdateRule:[1121],repository:[1207],rules:[1260,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1263]}],target:[587],__typename:[1455]},RefConnection:{edges:[1115],nodes:[1113],pageInfo:[892],totalCount:[609],__typename:[1455]},RefEdge:{cursor:[1455],node:[1113],__typename:[1455]},RefNameConditionTarget:{exclude:[1455],include:[1455],__typename:[1455]},RefNameConditionTargetInput:{exclude:[1455],include:[1455],__typename:[1455]},RefOrder:{field:[1119],direction:[796],__typename:[1455]},RefOrderField:{},RefUpdate:{name:[589],afterOid:[588],beforeOid:[588],force:[104],__typename:[1455]},RefUpdateRule:{allowsDeletions:[104],allowsForcePushes:[104],blocksCreations:[104],pattern:[1455],requiredApprovingReviewCount:[609],requiredStatusCheckContexts:[1455],requiresCodeOwnerReviews:[104],requiresConversationResolution:[104],requiresLinearHistory:[104],requiresSignatures:[104],viewerAllowedToDismissReviews:[104],viewerCanPush:[104],__typename:[1455]},ReferencedEvent:{actor:[12],commit:[191],commitRepository:[1207],createdAt:[330],id:[605],isCrossRepository:[104],isDirectReference:[104],subject:[1123],__typename:[1455]},ReferencedSubject:{on_Issue:[623],on_PullRequest:[1046],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Node:[788],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},RegenerateEnterpriseIdentityProviderRecoveryCodesInput:{clientMutationId:[1455],enterpriseId:[605],__typename:[1455]},RegenerateEnterpriseIdentityProviderRecoveryCodesPayload:{clientMutationId:[1455],identityProvider:[491],__typename:[1455]},RegenerateVerifiableDomainTokenInput:{clientMutationId:[1455],id:[605],__typename:[1455]},RegenerateVerifiableDomainTokenPayload:{clientMutationId:[1455],verificationToken:[1455],__typename:[1455]},RejectDeploymentsInput:{clientMutationId:[1455],workflowRunId:[605],environmentIds:[605],comment:[1455],__typename:[1455]},RejectDeploymentsPayload:{clientMutationId:[1455],deployments:[407],__typename:[1455]},Release:{author:[1697],createdAt:[330],databaseId:[609],description:[1455],descriptionHTML:[599],id:[605],immutable:[104],isDraft:[104],isLatest:[104],isPrerelease:[104],mentions:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],name:[1455],publishedAt:[330],reactionGroups:[1106],reactions:[1103,{after:[1455],before:[1455],first:[609],last:[609],content:[1104],orderBy:[1107]}],releaseAssets:[1132,{after:[1455],before:[1455],first:[609],last:[609],name:[1455]}],repository:[1207],resourcePath:[1518],shortDescriptionHTML:[599,{limit:[609]}],tag:[1113],tagCommit:[191],tagName:[1455],updatedAt:[330],url:[1518],viewerCanReact:[104],__typename:[1455]},ReleaseAsset:{contentType:[1455],createdAt:[330],digest:[1455],downloadCount:[609],downloadUrl:[1518],id:[605],name:[1455],release:[1130],size:[609],updatedAt:[330],uploadedBy:[1697],url:[1518],__typename:[1455]},ReleaseAssetConnection:{edges:[1133],nodes:[1131],pageInfo:[892],totalCount:[609],__typename:[1455]},ReleaseAssetEdge:{cursor:[1455],node:[1131],__typename:[1455]},ReleaseConnection:{edges:[1135],nodes:[1130],pageInfo:[892],totalCount:[609],__typename:[1455]},ReleaseEdge:{cursor:[1455],node:[1130],__typename:[1455]},ReleaseOrder:{field:[1137],direction:[796],__typename:[1455]},ReleaseOrderField:{},RemoveAssigneesFromAssignableInput:{clientMutationId:[1455],assignableId:[605],assigneeIds:[605],__typename:[1455]},RemoveAssigneesFromAssignablePayload:{assignable:[76],clientMutationId:[1455],__typename:[1455]},RemoveBlockedByInput:{clientMutationId:[1455],issueId:[605],blockingIssueId:[605],__typename:[1455]},RemoveBlockedByPayload:{blockingIssue:[623],clientMutationId:[1455],issue:[623],__typename:[1455]},RemoveEnterpriseAdminInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],__typename:[1455]},RemoveEnterpriseAdminPayload:{admin:[1697],clientMutationId:[1455],enterprise:[471],message:[1455],viewer:[1697],__typename:[1455]},RemoveEnterpriseIdentityProviderInput:{clientMutationId:[1455],enterpriseId:[605],__typename:[1455]},RemoveEnterpriseIdentityProviderPayload:{clientMutationId:[1455],identityProvider:[491],__typename:[1455]},RemoveEnterpriseMemberInput:{clientMutationId:[1455],enterpriseId:[605],userId:[605],__typename:[1455]},RemoveEnterpriseMemberPayload:{clientMutationId:[1455],enterprise:[471],user:[1697],viewer:[1697],__typename:[1455]},RemoveEnterpriseOrganizationInput:{clientMutationId:[1455],enterpriseId:[605],organizationId:[605],__typename:[1455]},RemoveEnterpriseOrganizationPayload:{clientMutationId:[1455],enterprise:[471],organization:[841],viewer:[1697],__typename:[1455]},RemoveEnterpriseSupportEntitlementInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],__typename:[1455]},RemoveEnterpriseSupportEntitlementPayload:{clientMutationId:[1455],message:[1455],__typename:[1455]},RemoveLabelsFromLabelableInput:{clientMutationId:[1455],labelableId:[605],labelIds:[605],__typename:[1455]},RemoveLabelsFromLabelablePayload:{clientMutationId:[1455],labelable:[695],__typename:[1455]},RemoveOutsideCollaboratorInput:{clientMutationId:[1455],userId:[605],organizationId:[605],__typename:[1455]},RemoveOutsideCollaboratorPayload:{clientMutationId:[1455],removedUser:[1697],__typename:[1455]},RemoveReactionInput:{clientMutationId:[1455],subjectId:[605],content:[1104],__typename:[1455]},RemoveReactionPayload:{clientMutationId:[1455],reaction:[1102],reactionGroups:[1106],subject:[1099],__typename:[1455]},RemoveStarInput:{clientMutationId:[1455],starrableId:[605],__typename:[1455]},RemoveStarPayload:{clientMutationId:[1455],starrable:[1438],__typename:[1455]},RemoveSubIssueInput:{clientMutationId:[1455],issueId:[605],subIssueId:[605],__typename:[1455]},RemoveSubIssuePayload:{clientMutationId:[1455],issue:[623],subIssue:[623],__typename:[1455]},RemoveUpvoteInput:{clientMutationId:[1455],subjectId:[605],__typename:[1455]},RemoveUpvotePayload:{clientMutationId:[1455],subject:[1731],__typename:[1455]},RemovedFromMergeQueueEvent:{actor:[12],beforeCommit:[191],createdAt:[330],enqueuer:[1697],id:[605],mergeQueue:[753],pullRequest:[1046],reason:[1455],__typename:[1455]},RemovedFromProjectEvent:{actor:[12],createdAt:[330],databaseId:[609],id:[605],project:[929],projectColumnName:[1455],__typename:[1455]},RemovedFromProjectV2Event:{actor:[12],createdAt:[330],id:[605],project:[950],wasAutomated:[104],__typename:[1455]},RenamedTitleEvent:{actor:[12],createdAt:[330],currentTitle:[1455],id:[605],previousTitle:[1455],subject:[1168],__typename:[1455]},RenamedTitleSubject:{on_Issue:[623],on_PullRequest:[1046],on_Assignable:[76],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Node:[788],on_ProjectV2Owner:[1005],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_Updatable:[1561],on_UpdatableComment:[1562],__typename:[1455]},ReopenDiscussionInput:{clientMutationId:[1455],discussionId:[605],__typename:[1455]},ReopenDiscussionPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},ReopenIssueInput:{clientMutationId:[1455],issueId:[605],__typename:[1455]},ReopenIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},ReopenPullRequestInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},ReopenPullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},ReopenedEvent:{actor:[12],closable:[172],createdAt:[330],id:[605],stateReason:[671],__typename:[1455]},ReorderEnvironmentInput:{clientMutationId:[1455],environmentId:[605],position:[609],__typename:[1455]},ReorderEnvironmentPayload:{clientMutationId:[1455],environment:[543],__typename:[1455]},ReplaceActorsForAssignableInput:{clientMutationId:[1455],assignableId:[605],actorIds:[605],actorLogins:[1455],agentAssignment:[62],__typename:[1455]},ReplaceActorsForAssignablePayload:{assignable:[76],clientMutationId:[1455],__typename:[1455]},RepoAccessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1181],__typename:[1455]},RepoAccessAuditEntryVisibility:{},RepoAddMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1183],__typename:[1455]},RepoAddMemberAuditEntryVisibility:{},RepoAddTopicAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],topic:[1506],topicName:[1455],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoArchivedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1186],__typename:[1455]},RepoArchivedAuditEntryVisibility:{},RepoChangeMergeSettingAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isEnabled:[104],mergeType:[1188],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoChangeMergeSettingAuditEntryMergeType:{},RepoConfigDisableAnonymousGitAccessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigDisableCollaboratorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigDisableContributorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigDisableSockpuppetDisallowedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigEnableAnonymousGitAccessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigEnableCollaboratorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigEnableContributorsOnlyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigEnableSockpuppetDisallowedAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigLockAnonymousGitAccessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoConfigUnlockAnonymousGitAccessAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepoCreateAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],forkParentName:[1455],forkSourceName:[1455],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1200],__typename:[1455]},RepoCreateAuditEntryVisibility:{},RepoDestroyAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1202],__typename:[1455]},RepoDestroyAuditEntryVisibility:{},RepoRemoveMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],visibility:[1204],__typename:[1455]},RepoRemoveMemberAuditEntryVisibility:{},RepoRemoveTopicAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],topic:[1506],topicName:[1455],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},ReportedContentClassifiers:{},Repository:{allowUpdateBranch:[104],archivedAt:[330],assignableUsers:[1700,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],autoMergeAllowed:[104],branchProtectionRules:[113,{after:[1455],before:[1455],first:[609],last:[609]}],codeOfConduct:[181],codeowners:[1210,{refName:[1455]}],collaborators:[1212,{affiliation:[186],login:[1455],query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],commitComments:[196,{after:[1455],before:[1455],first:[609],last:[609]}],contactLinks:[1215],contributingGuidelines:[215],createdAt:[330],databaseId:[609],defaultBranchRef:[1113],deleteBranchOnMerge:[104],dependencyGraphManifests:[401,{after:[1455],before:[1455],first:[609],last:[609],withDependencies:[104],dependenciesFirst:[609],dependenciesAfter:[1455]}],deployKeys:[404,{after:[1455],before:[1455],first:[609],last:[609]}],deployments:[408,{environments:[1455,`[String!]`],orderBy:[411],after:[1455],before:[1455],first:[609],last:[609]}],description:[1455],descriptionHTML:[599],discussion:[438,{number:[609,`Int!`]}],discussionCategories:[440,{after:[1455],before:[1455],first:[609],last:[609],filterByAssignable:[104]}],discussionCategory:[439,{slug:[1455,`String!`]}],discussions:[446,{after:[1455],before:[1455],first:[609],last:[609],categoryId:[605],states:[456,`[DiscussionState!]`],orderBy:[448],answered:[104]}],diskUsage:[609],environment:[543,{name:[1455,`String!`]}],environments:[544,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[548],pinnedEnvironmentFilter:[547],names:[1455,`[String!]`]}],forkCount:[609],forkingAllowed:[104],forks:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609]}],fundingLinks:[570],hasDiscussionsEnabled:[104],hasIssuesEnabled:[104],hasProjectsEnabled:[104],hasPullRequestsEnabled:[104],hasSponsorshipsEnabled:[104],hasVulnerabilityAlertsEnabled:[104],hasWikiEnabled:[104],homepageUrl:[1518],id:[605],interactionAbility:[1230],isArchived:[104],isBlankIssuesEnabled:[104],isDisabled:[104],isEmpty:[104],isFork:[104],isInOrganization:[104],isLocked:[104],isMirror:[104],isPrivate:[104],isSecurityPolicyEnabled:[104],isTemplate:[104],isUserConfigurationRepository:[104],issue:[623,{number:[609,`Int!`]}],issueOrPullRequest:[666,{number:[609,`Int!`]}],issueTemplates:[672],issueType:[680,{name:[1455,`String!`]}],issueTypes:[684,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[686]}],issues:[632,{orderBy:[667],labels:[1455,`[String!]`],states:[670,`[IssueState!]`],filterBy:[665],after:[1455],before:[1455],first:[609],last:[609]}],label:[690,{name:[1455,`String!`]}],labels:[691,{orderBy:[693],after:[1455],before:[1455],first:[609],last:[609],query:[1455]}],languages:[698,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[700]}],latestRelease:[1130],licenseInfo:[703],lockReason:[1239],mentionableUsers:[1700,{query:[1455],after:[1455],before:[1455],first:[609],last:[609]}],mergeCommitAllowed:[104],mergeCommitMessage:[749],mergeCommitTitle:[750],mergeQueue:[753,{branch:[1455]}],milestone:[771,{number:[609,`Int!`]}],milestones:[772,{after:[1455],before:[1455],first:[609],last:[609],states:[777,`[MilestoneState!]`],orderBy:[775],query:[1455]}],mirrorUrl:[1518],name:[1455],nameWithOwner:[1455],object:[587,{oid:[588],expression:[1455]}],openGraphImageUrl:[1518],owner:[1251],packages:[873,{after:[1455],before:[1455],first:[609],last:[609],names:[1455,`[String]`],repositoryId:[605],packageType:[885],orderBy:[880]}],parent:[1207],pinnedDiscussions:[910,{after:[1455],before:[1455],first:[609],last:[609]}],pinnedEnvironments:[915,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[917]}],pinnedIssues:[922,{after:[1455],before:[1455],first:[609],last:[609]}],planFeatures:[1253],primaryLanguage:[697],project:[929,{number:[609,`Int!`]}],projectV2:[950,{number:[609,`Int!`]}],projects:[942,{orderBy:[944],search:[1455],states:[948,`[ProjectState!]`],after:[1455],before:[1455],first:[609],last:[609]}],projectsResourcePath:[1518],projectsUrl:[1518],projectsV2:[955,{after:[1455],before:[1455],first:[609],last:[609],query:[1455],orderBy:[1003],minPermissionLevel:[1006]}],pullRequest:[1046,{number:[609,`Int!`]}],pullRequestCreationPolicy:[1058],pullRequestTemplates:[1082],pullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],pushedAt:[330],rebaseMergeAllowed:[104],recentProjects:[955,{after:[1455],before:[1455],first:[609],last:[609]}],ref:[1113,{qualifiedName:[1455,`String!`]}],refs:[1114,{query:[1455],after:[1455],before:[1455],first:[609],last:[609],refPrefix:[1455,`String!`],direction:[796],orderBy:[1118]}],release:[1130,{tagName:[1455,`String!`]}],releases:[1134,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1136]}],repositoryCustomPropertyValue:[1220,{propertyName:[1455,`String!`]}],repositoryCustomPropertyValues:[1221,{after:[1455],before:[1455],first:[609],last:[609]}],repositoryTopics:[1277,{after:[1455],before:[1455],first:[609],last:[609]}],resourcePath:[1518],ruleset:[1266,{includeParents:[104],databaseId:[609,`Int!`]}],rulesets:[1272,{after:[1455],before:[1455],first:[609],last:[609],includeParents:[104],targets:[1274,`[RepositoryRulesetTarget!]`]}],securityPolicyUrl:[1518],shortDescriptionHTML:[599,{limit:[609]}],squashMergeAllowed:[104],squashMergeCommitMessage:[1431],squashMergeCommitTitle:[1432],squashPrTitleUsedAsDefault:[104],sshUrl:[590],stargazerCount:[609],stargazers:[1436,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1434]}],submodules:[1463,{after:[1455],before:[1455],first:[609],last:[609]}],suggestedActors:[13,{query:[1455],loginNames:[1455],capabilities:[1275,`[RepositorySuggestedActorFilter!]!`],after:[1455],before:[1455],first:[609],last:[609]}],tempCloneToken:[1455],templateRepository:[1207],updatedAt:[330],url:[1518],usesCustomOpenGraphImage:[104],viewerCanAdminister:[104],viewerCanCreateProjects:[104],viewerCanSeeIssueFields:[104],viewerCanSubscribe:[104],viewerCanUpdateTopics:[104],viewerDefaultCommitEmail:[1455],viewerDefaultMergeMethod:[1060],viewerHasStarred:[104],viewerPermission:[1252],viewerPossibleCommitEmails:[1455],viewerSubscription:[1468],visibility:[1279],vulnerabilityAlert:[1282,{number:[609,`Int!`]}],vulnerabilityAlerts:[1283,{after:[1455],before:[1455],first:[609],last:[609],states:[1287,`[RepositoryVulnerabilityAlertState!]`],dependencyScopes:[1285,`[RepositoryVulnerabilityAlertDependencyScope!]`],classifications:[1348,`[SecurityAdvisoryClassification!]`]}],watchers:[1700,{after:[1455],before:[1455],first:[609],last:[609]}],webCommitSignoffRequired:[104],__typename:[1455]},RepositoryAffiliation:{},RepositoryAuditEntryData:{repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],on_OrgRestoreMemberMembershipRepositoryAuditEntryData:[831],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_TeamAddRepositoryAuditEntry:[1478],on_TeamRemoveRepositoryAuditEntry:[1494],__typename:[1455]},RepositoryCodeowners:{errors:[1211],__typename:[1455]},RepositoryCodeownersError:{column:[609],kind:[1455],line:[609],message:[1455],path:[1455],source:[1455],suggestion:[1455],__typename:[1455]},RepositoryCollaboratorConnection:{edges:[1213],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryCollaboratorEdge:{cursor:[1455],node:[1697],permission:[1252],permissionSources:[897],__typename:[1455]},RepositoryConnection:{edges:[1226],nodes:[1207],pageInfo:[892],totalCount:[609],totalDiskUsage:[609],__typename:[1455]},RepositoryContactLink:{about:[1455],name:[1455],url:[1518],__typename:[1455]},RepositoryContributionType:{},RepositoryCustomProperty:{allowedValues:[1455],defaultValue:[325],description:[1455],id:[605],propertyName:[1455],regex:[1455],requireExplicitValues:[104],required:[104],source:[324],valueType:[327],valuesEditableBy:[1223],__typename:[1455]},RepositoryCustomPropertyConnection:{edges:[1219],nodes:[1217],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryCustomPropertyEdge:{cursor:[1455],node:[1217],__typename:[1455]},RepositoryCustomPropertyValue:{propertyName:[1455],value:[325],__typename:[1455]},RepositoryCustomPropertyValueConnection:{edges:[1222],nodes:[1220],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryCustomPropertyValueEdge:{cursor:[1455],node:[1220],__typename:[1455]},RepositoryCustomPropertyValuesEditableBy:{},RepositoryDiscussionAuthor:{repositoryDiscussions:[446,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[448],repositoryId:[605],answered:[104],states:[456,`[DiscussionState!]`]}],on_Organization:[841],on_User:[1697],__typename:[1455]},RepositoryDiscussionCommentAuthor:{repositoryDiscussionComments:[444,{after:[1455],before:[1455],first:[609],last:[609],repositoryId:[605],onlyAnswers:[104]}],on_Organization:[841],on_User:[1697],__typename:[1455]},RepositoryEdge:{cursor:[1455],node:[1207],__typename:[1455]},RepositoryIdConditionTarget:{repositoryIds:[605],__typename:[1455]},RepositoryIdConditionTargetInput:{repositoryIds:[605],__typename:[1455]},RepositoryInfo:{archivedAt:[330],createdAt:[330],description:[1455],descriptionHTML:[599],forkCount:[609],hasDiscussionsEnabled:[104],hasIssuesEnabled:[104],hasProjectsEnabled:[104],hasPullRequestsEnabled:[104],hasSponsorshipsEnabled:[104],hasWikiEnabled:[104],homepageUrl:[1518],isArchived:[104],isFork:[104],isInOrganization:[104],isLocked:[104],isMirror:[104],isPrivate:[104],isTemplate:[104],licenseInfo:[703],lockReason:[1239],mirrorUrl:[1518],name:[1455],nameWithOwner:[1455],openGraphImageUrl:[1518],owner:[1251],pullRequestCreationPolicy:[1058],pushedAt:[330],resourcePath:[1518],shortDescriptionHTML:[599,{limit:[609]}],updatedAt:[330],url:[1518],usesCustomOpenGraphImage:[104],visibility:[1279],on_Repository:[1207],__typename:[1455]},RepositoryInteractionAbility:{expiresAt:[330],limit:[1231],origin:[1233],__typename:[1455]},RepositoryInteractionLimit:{},RepositoryInteractionLimitExpiry:{},RepositoryInteractionLimitOrigin:{},RepositoryInvitation:{email:[1455],id:[605],invitee:[1697],inviter:[1697],permalink:[1518],permission:[1252],repository:[1229],__typename:[1455]},RepositoryInvitationConnection:{edges:[1236],nodes:[1234],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryInvitationEdge:{cursor:[1455],node:[1234],__typename:[1455]},RepositoryInvitationOrder:{field:[1238],direction:[796],__typename:[1455]},RepositoryInvitationOrderField:{},RepositoryLockReason:{},RepositoryMigration:{continueOnError:[104],createdAt:[330],databaseId:[1455],failureReason:[1455],id:[605],migrationLogUrl:[1518],migrationSource:[768],repositoryName:[1455],sourceUrl:[1518],state:[770],warningsCount:[609],__typename:[1455]},RepositoryMigrationConnection:{edges:[1242],nodes:[1240],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryMigrationEdge:{cursor:[1455],node:[1240],__typename:[1455]},RepositoryMigrationOrder:{field:[1245],direction:[1244],__typename:[1455]},RepositoryMigrationOrderDirection:{},RepositoryMigrationOrderField:{},RepositoryNameConditionTarget:{exclude:[1455],include:[1455],protected:[104],__typename:[1455]},RepositoryNameConditionTargetInput:{exclude:[1455],include:[1455],protected:[104],__typename:[1455]},RepositoryNode:{repository:[1207],on_CommitComment:[195],on_CommitCommentThread:[198],on_DependabotUpdate:[394],on_Discussion:[438],on_DiscussionCategory:[439],on_Issue:[623],on_IssueComment:[625],on_PinnedDiscussion:[909],on_PullRequest:[1046],on_PullRequestCommitCommentThread:[1053],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],on_RepositoryVulnerabilityAlert:[1282],__typename:[1455]},RepositoryOrder:{field:[1250],direction:[796],__typename:[1455]},RepositoryOrderField:{},RepositoryOwner:{avatarUrl:[1518,{size:[609]}],id:[605],login:[1455],repositories:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609],isArchived:[104],isFork:[104]}],repository:[1207,{name:[1455,`String!`],followRenames:[104]}],resourcePath:[1518],url:[1518],on_Organization:[841],on_User:[1697],__typename:[1455]},RepositoryPermission:{},RepositoryPlanFeatures:{codeowners:[104],draftPullRequests:[104],maximumAssignees:[609],maximumManualReviewRequests:[609],teamReviewRequests:[104],__typename:[1455]},RepositoryPrivacy:{},RepositoryPropertyConditionTarget:{exclude:[1039],include:[1039],__typename:[1455]},RepositoryPropertyConditionTargetInput:{exclude:[1040],include:[1040],__typename:[1455]},RepositoryRule:{id:[605],parameters:[1333],repositoryRuleset:[1266],type:[1265],__typename:[1455]},RepositoryRuleConditions:{organizationProperty:[866],refName:[1116],repositoryId:[1227],repositoryName:[1246],repositoryProperty:[1255],__typename:[1455]},RepositoryRuleConditionsInput:{refName:[1117],repositoryName:[1247],repositoryId:[1228],repositoryProperty:[1256],organizationProperty:[867],__typename:[1455]},RepositoryRuleConnection:{edges:[1261],nodes:[1257],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryRuleEdge:{cursor:[1455],node:[1257],__typename:[1455]},RepositoryRuleInput:{id:[605],type:[1265],parameters:[1334],__typename:[1455]},RepositoryRuleOrder:{field:[1264],direction:[796],__typename:[1455]},RepositoryRuleOrderField:{},RepositoryRuleType:{},RepositoryRuleset:{bypassActors:[1269,{after:[1455],before:[1455],first:[609],last:[609]}],conditions:[1258],createdAt:[330],databaseId:[609],enforcement:[1332],id:[605],name:[1455],rules:[1260,{after:[1455],before:[1455],first:[609],last:[609],type:[1265]}],source:[1335],target:[1274],updatedAt:[330],__typename:[1455]},RepositoryRulesetBypassActor:{actor:[116],bypassMode:[1268],deployKey:[104],enterpriseOwner:[104],enterpriseRole:[104],id:[605],organizationAdmin:[104],repositoryRoleDatabaseId:[609],repositoryRoleName:[1455],repositoryRuleset:[1266],__typename:[1455]},RepositoryRulesetBypassActorBypassMode:{},RepositoryRulesetBypassActorConnection:{edges:[1270],nodes:[1267],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryRulesetBypassActorEdge:{cursor:[1455],node:[1267],__typename:[1455]},RepositoryRulesetBypassActorInput:{actorId:[605],repositoryRoleDatabaseId:[609],organizationAdmin:[104],enterpriseOwner:[104],enterpriseRole:[104],deployKey:[104],bypassMode:[1268],__typename:[1455]},RepositoryRulesetConnection:{edges:[1273],nodes:[1266],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryRulesetEdge:{cursor:[1455],node:[1266],__typename:[1455]},RepositoryRulesetTarget:{},RepositorySuggestedActorFilter:{},RepositoryTopic:{id:[605],resourcePath:[1518],topic:[1506],url:[1518],__typename:[1455]},RepositoryTopicConnection:{edges:[1278],nodes:[1276],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryTopicEdge:{cursor:[1455],node:[1276],__typename:[1455]},RepositoryVisibility:{},RepositoryVisibilityChangeDisableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepositoryVisibilityChangeEnableAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],enterpriseResourcePath:[1518],enterpriseSlug:[1455],enterpriseUrl:[1518],id:[605],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},RepositoryVulnerabilityAlert:{autoDismissedAt:[330],createdAt:[330],dependabotUpdate:[394],dependencyRelationship:[1284],dependencyScope:[1285],dismissComment:[1455],dismissReason:[1455],dismissedAt:[330],dismisser:[1697],fixedAt:[330],id:[605],number:[609],repository:[1207],securityAdvisory:[1347],securityVulnerability:[1361],state:[1287],vulnerableManifestFilename:[1455],vulnerableManifestPath:[1455],vulnerableRequirements:[1455],__typename:[1455]},RepositoryVulnerabilityAlertConnection:{edges:[1286],nodes:[1282],pageInfo:[892],totalCount:[609],__typename:[1455]},RepositoryVulnerabilityAlertDependencyRelationship:{},RepositoryVulnerabilityAlertDependencyScope:{},RepositoryVulnerabilityAlertEdge:{cursor:[1455],node:[1282],__typename:[1455]},RepositoryVulnerabilityAlertState:{},ReprioritizeSubIssueInput:{clientMutationId:[1455],issueId:[605],subIssueId:[605],afterId:[605],beforeId:[605],__typename:[1455]},ReprioritizeSubIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},RequestReviewsByLoginInput:{clientMutationId:[1455],pullRequestId:[605],userLogins:[1455],botLogins:[1455],teamSlugs:[1455],union:[104],__typename:[1455]},RequestReviewsByLoginPayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],requestedReviewersEdge:[1704],__typename:[1455]},RequestReviewsInput:{clientMutationId:[1455],pullRequestId:[605],userIds:[605],botIds:[605],teamIds:[605],union:[104],__typename:[1455]},RequestReviewsPayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],requestedReviewersEdge:[1704],__typename:[1455]},RequestableCheckStatusState:{},RequestedReviewer:{on_Bot:[105],on_Mannequin:[719],on_Team:[1476],on_User:[1697],on_Actor:[12],on_Node:[788],on_UniformResourceLocatable:[1530],on_MemberStatusable:[742],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],__typename:[1455]},RequestedReviewerConnection:{edges:[1297],nodes:[1295],pageInfo:[892],totalCount:[609],__typename:[1455]},RequestedReviewerEdge:{cursor:[1455],node:[1295],__typename:[1455]},RequirableByPullRequest:{isRequired:[104,{pullRequestId:[605],pullRequestNumber:[609]}],on_CheckRun:[144],on_StatusContext:[1452],__typename:[1455]},RequiredDeploymentsParameters:{requiredDeploymentEnvironments:[1455],__typename:[1455]},RequiredDeploymentsParametersInput:{requiredDeploymentEnvironments:[1455],__typename:[1455]},RequiredReviewerConfiguration:{filePatterns:[1455],minimumApprovals:[609],reviewerId:[605],__typename:[1455]},RequiredReviewerConfigurationInput:{filePatterns:[1455],minimumApprovals:[609],reviewerId:[605],__typename:[1455]},RequiredStatusCheckDescription:{app:[65],context:[1455],__typename:[1455]},RequiredStatusCheckInput:{context:[1455],appId:[605],__typename:[1455]},RequiredStatusChecksParameters:{doNotEnforceOnCreate:[104],requiredStatusChecks:[1446],strictRequiredStatusChecksPolicy:[104],__typename:[1455]},RequiredStatusChecksParametersInput:{doNotEnforceOnCreate:[104],requiredStatusChecks:[1447],strictRequiredStatusChecksPolicy:[104],__typename:[1455]},RerequestCheckSuiteInput:{clientMutationId:[1455],repositoryId:[605],checkSuiteId:[605],__typename:[1455]},RerequestCheckSuitePayload:{checkSuite:[158],clientMutationId:[1455],__typename:[1455]},ResolveReviewThreadInput:{clientMutationId:[1455],threadId:[605],__typename:[1455]},ResolveReviewThreadPayload:{clientMutationId:[1455],thread:[1076],__typename:[1455]},RestrictedContribution:{isRestricted:[104],occurredAt:[330],resourcePath:[1518],url:[1518],user:[1697],__typename:[1455]},RetireSponsorsTierInput:{clientMutationId:[1455],tierId:[605],__typename:[1455]},RetireSponsorsTierPayload:{clientMutationId:[1455],sponsorsTier:[1413],__typename:[1455]},RevertPullRequestInput:{clientMutationId:[1455],pullRequestId:[605],title:[1455],body:[1455],draft:[104],__typename:[1455]},RevertPullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],revertPullRequest:[1046],__typename:[1455]},ReviewDismissalAllowance:{actor:[1317],branchProtectionRule:[109],id:[605],__typename:[1455]},ReviewDismissalAllowanceActor:{on_App:[65],on_Team:[1476],on_User:[1697],on_Node:[788],on_MemberStatusable:[742],on_Subscribable:[1465],on_TeamReviewRequestable:[1500],on_Actor:[12],on_Agentic:[63],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},ReviewDismissalAllowanceConnection:{edges:[1319],nodes:[1316],pageInfo:[892],totalCount:[609],__typename:[1455]},ReviewDismissalAllowanceEdge:{cursor:[1455],node:[1316],__typename:[1455]},ReviewDismissedEvent:{actor:[12],createdAt:[330],databaseId:[609],dismissalMessage:[1455],dismissalMessageHTML:[1455],id:[605],previousReviewState:[1075],pullRequest:[1046],pullRequestCommit:[1052],resourcePath:[1518],review:[1065],url:[1518],__typename:[1455]},ReviewRequest:{asCodeOwner:[104],databaseId:[609],id:[605],pullRequest:[1046],requestedReviewer:[1295],__typename:[1455]},ReviewRequestConnection:{edges:[1323],nodes:[1321],pageInfo:[892],totalCount:[609],__typename:[1455]},ReviewRequestEdge:{cursor:[1455],node:[1321],__typename:[1455]},ReviewRequestRemovedEvent:{actor:[12],createdAt:[330],id:[605],pullRequest:[1046],requestedReviewer:[1295],__typename:[1455]},ReviewRequestedEvent:{actor:[12],createdAt:[330],id:[605],pullRequest:[1046],requestedReviewer:[1295],__typename:[1455]},ReviewStatusHovercardContext:{message:[1455],octicon:[1455],reviewDecision:[1072],__typename:[1455]},RevokeEnterpriseOrganizationsMigratorRoleInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],__typename:[1455]},RevokeEnterpriseOrganizationsMigratorRolePayload:{clientMutationId:[1455],organizations:[846,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},RevokeMigratorRoleInput:{clientMutationId:[1455],organizationId:[605],actor:[1455],actorType:[16],__typename:[1455]},RevokeMigratorRolePayload:{clientMutationId:[1455],success:[104],__typename:[1455]},RoleInOrganization:{},RuleEnforcement:{},RuleParameters:{on_BranchNamePatternParameters:[107],on_CodeScanningParameters:[182],on_CommitAuthorEmailPatternParameters:[193],on_CommitMessagePatternParameters:[206],on_CommitterEmailPatternParameters:[209],on_CopilotCodeReviewParameters:[234],on_FileExtensionRestrictionParameters:[558],on_FilePathRestrictionParameters:[560],on_MaxFilePathLengthParameters:[737],on_MaxFileSizeParameters:[739],on_MergeQueueParameters:[762],on_PullRequestParameters:[1063],on_RequiredDeploymentsParameters:[1299],on_RequiredStatusChecksParameters:[1305],on_TagNamePatternParameters:[1474],on_UpdateParameters:[1639],on_WorkflowsParameters:[1742],__typename:[1455]},RuleParametersInput:{update:[1640],mergeQueue:[763],requiredDeployments:[1300],pullRequest:[1064],requiredStatusChecks:[1306],commitMessagePattern:[207],commitAuthorEmailPattern:[194],committerEmailPattern:[210],branchNamePattern:[108],tagNamePattern:[1475],filePathRestriction:[561],maxFilePathLength:[738],fileExtensionRestriction:[559],maxFileSize:[740],workflows:[1743],codeScanning:[183],copilotCodeReview:[235],__typename:[1455]},RuleSource:{on_Enterprise:[471],on_Organization:[841],on_Repository:[1207],on_Node:[788],on_Actor:[12],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],on_RepositoryInfo:[1229],on_Starrable:[1438],on_Subscribable:[1465],__typename:[1455]},SamlDigestAlgorithm:{},SamlSignatureAlgorithm:{},SavedReply:{body:[1455],bodyHTML:[599],databaseId:[609],id:[605],title:[1455],user:[12],__typename:[1455]},SavedReplyConnection:{edges:[1340],nodes:[1338],pageInfo:[892],totalCount:[609],__typename:[1455]},SavedReplyEdge:{cursor:[1455],node:[1338],__typename:[1455]},SavedReplyOrder:{field:[1342],direction:[796],__typename:[1455]},SavedReplyOrderField:{},SearchResultItem:{on_App:[65],on_Discussion:[438],on_Issue:[623],on_MarketplaceListing:[734],on_Organization:[841],on_PullRequest:[1046],on_Repository:[1207],on_User:[1697],on_Node:[788],on_Closable:[172],on_Comment:[187],on_Deletable:[334],on_Labelable:[695],on_Lockable:[717],on_Reactable:[1099],on_RepositoryNode:[1248],on_Subscribable:[1465],on_Updatable:[1561],on_Votable:[1731],on_Assignable:[76],on_ProjectV2Owner:[1005],on_SubscribableThread:[1466],on_UniformResourceLocatable:[1530],on_UpdatableComment:[1562],on_Actor:[12],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_RepositoryInfo:[1229],on_Starrable:[1438],on_Agentic:[63],__typename:[1455]},SearchResultItemConnection:{codeCount:[609],discussionCount:[609],edges:[1345],issueCount:[609],issueSearchType:[669],lexicalFallbackReason:[702],nodes:[1343],pageInfo:[892],repositoryCount:[609],userCount:[609],wikiCount:[609],__typename:[1455]},SearchResultItemEdge:{cursor:[1455],node:[1343],textMatches:[1502],__typename:[1455]},SearchType:{},SecurityAdvisory:{classification:[1348],cvss:[123],cvssSeverities:[328],cwes:[125,{after:[1455],before:[1455],first:[609],last:[609]}],databaseId:[609],description:[1455],epss:[466],ghsaId:[1455],id:[605],identifiers:[1352],notificationsPermalink:[1518],origin:[1455],permalink:[1518],publishedAt:[330],references:[1359],severity:[1360],summary:[1455],updatedAt:[330],vulnerabilities:[1362,{orderBy:[1364],ecosystem:[1350],package:[1455],severities:[1360,`[SecurityAdvisorySeverity!]`],classifications:[1348,`[SecurityAdvisoryClassification!]`],after:[1455],before:[1455],first:[609],last:[609]}],withdrawnAt:[330],__typename:[1455]},SecurityAdvisoryClassification:{},SecurityAdvisoryConnection:{edges:[1351],nodes:[1347],pageInfo:[892],totalCount:[609],__typename:[1455]},SecurityAdvisoryEcosystem:{},SecurityAdvisoryEdge:{cursor:[1455],node:[1347],__typename:[1455]},SecurityAdvisoryIdentifier:{type:[1455],value:[1455],__typename:[1455]},SecurityAdvisoryIdentifierFilter:{type:[1354],value:[1455],__typename:[1455]},SecurityAdvisoryIdentifierType:{},SecurityAdvisoryOrder:{field:[1356],direction:[796],__typename:[1455]},SecurityAdvisoryOrderField:{},SecurityAdvisoryPackage:{ecosystem:[1350],name:[1455],__typename:[1455]},SecurityAdvisoryPackageVersion:{identifier:[1455],__typename:[1455]},SecurityAdvisoryReference:{url:[1518],__typename:[1455]},SecurityAdvisorySeverity:{},SecurityVulnerability:{advisory:[1347],firstPatchedVersion:[1358],package:[1357],severity:[1360],updatedAt:[330],vulnerableVersionRange:[1455],__typename:[1455]},SecurityVulnerabilityConnection:{edges:[1363],nodes:[1361],pageInfo:[892],totalCount:[609],__typename:[1455]},SecurityVulnerabilityEdge:{cursor:[1455],node:[1361],__typename:[1455]},SecurityVulnerabilityOrder:{field:[1365],direction:[796],__typename:[1455]},SecurityVulnerabilityOrderField:{},SetEnterpriseIdentityProviderInput:{clientMutationId:[1455],enterpriseId:[605],ssoUrl:[1518],issuer:[1455],idpCertificate:[1455],signatureMethod:[1337],digestMethod:[1336],__typename:[1455]},SetEnterpriseIdentityProviderPayload:{clientMutationId:[1455],identityProvider:[491],__typename:[1455]},SetIssueFieldValueInput:{clientMutationId:[1455],issueId:[605],issueFields:[641],__typename:[1455]},SetIssueFieldValuePayload:{clientMutationId:[1455],issue:[623],issueFieldValues:[657],__typename:[1455]},SetOrganizationInteractionLimitInput:{clientMutationId:[1455],organizationId:[605],limit:[1231],expiry:[1232],__typename:[1455]},SetOrganizationInteractionLimitPayload:{clientMutationId:[1455],organization:[841],__typename:[1455]},SetRepositoryCustomPropertyValuesInput:{clientMutationId:[1455],properties:[326],repositoryId:[605],__typename:[1455]},SetRepositoryCustomPropertyValuesPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},SetRepositoryInteractionLimitInput:{clientMutationId:[1455],repositoryId:[605],limit:[1231],expiry:[1232],__typename:[1455]},SetRepositoryInteractionLimitPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},SetUserInteractionLimitInput:{clientMutationId:[1455],userId:[605],limit:[1231],expiry:[1232],__typename:[1455]},SetUserInteractionLimitPayload:{clientMutationId:[1455],user:[1697],__typename:[1455]},SmimeSignature:{email:[1455],isValid:[104],payload:[1455],signature:[1455],signer:[1697],state:[592],verifiedAt:[330],wasSignedByGitHub:[104],__typename:[1455]},SocialAccount:{displayName:[1455],provider:[1382],url:[1518],__typename:[1455]},SocialAccountConnection:{edges:[1381],nodes:[1379],pageInfo:[892],totalCount:[609],__typename:[1455]},SocialAccountEdge:{cursor:[1455],node:[1379],__typename:[1455]},SocialAccountProvider:{},Sponsor:{on_Organization:[841],on_User:[1697],on_Actor:[12],on_MemberStatusable:[742],on_Node:[788],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],on_Agentic:[63],__typename:[1455]},SponsorAndLifetimeValue:{amountInCents:[609],formattedAmount:[1455],sponsor:[1393],sponsorable:[1393],__typename:[1455]},SponsorAndLifetimeValueConnection:{edges:[1386],nodes:[1384],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorAndLifetimeValueEdge:{cursor:[1455],node:[1384],__typename:[1455]},SponsorAndLifetimeValueOrder:{field:[1388],direction:[796],__typename:[1455]},SponsorAndLifetimeValueOrderField:{},SponsorConnection:{edges:[1390],nodes:[1383],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorEdge:{cursor:[1455],node:[1383],__typename:[1455]},SponsorOrder:{field:[1392],direction:[796],__typename:[1455]},SponsorOrderField:{},Sponsorable:{estimatedNextSponsorsPayoutInCents:[609],hasSponsorsListing:[104],isSponsoredBy:[104,{accountLogin:[1455,`String!`]}],isSponsoringViewer:[104],lifetimeReceivedSponsorshipValues:[1385,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1387]}],monthlyEstimatedSponsorsIncomeInCents:[609],sponsoring:[1389,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1391]}],sponsors:[1389,{after:[1455],before:[1455],first:[609],last:[609],tierId:[605],orderBy:[1391]}],sponsorsActivities:[1401,{after:[1455],before:[1455],first:[609],last:[609],period:[1405],since:[330],until:[330],orderBy:[1403],actions:[1400,`[SponsorsActivityAction!]`],includeAsSponsor:[104],includePrivate:[104]}],sponsorsListing:[1409],sponsorshipForViewerAsSponsor:[1419,{activeOnly:[104]}],sponsorshipForViewerAsSponsorable:[1419,{activeOnly:[104]}],sponsorshipNewsletters:[1423,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1425]}],sponsorshipsAsMaintainer:[1420,{after:[1455],before:[1455],first:[609],last:[609],includePrivate:[104],orderBy:[1427],activeOnly:[104]}],sponsorshipsAsSponsor:[1420,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1427],maintainerLogins:[1455,`[String!]`],activeOnly:[104]}],totalSponsorshipAmountAsSponsorInCents:[609,{since:[330],until:[330],sponsorableLogins:[1455,`[String!]`]}],viewerCanSponsor:[104],viewerIsSponsoring:[104],on_Organization:[841],on_User:[1697],__typename:[1455]},SponsorableItem:{on_Organization:[841],on_User:[1697],on_Actor:[12],on_MemberStatusable:[742],on_Node:[788],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],on_Agentic:[63],__typename:[1455]},SponsorableItemConnection:{edges:[1396],nodes:[1394],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorableItemEdge:{cursor:[1455],node:[1394],__typename:[1455]},SponsorableOrder:{field:[1398],direction:[796],__typename:[1455]},SponsorableOrderField:{},SponsorsActivity:{action:[1400],currentPrivacyLevel:[1430],id:[605],paymentSource:[1429],previousSponsorsTier:[1413],sponsor:[1383],sponsorable:[1393],sponsorsTier:[1413],timestamp:[330],viaBulkSponsorship:[104],__typename:[1455]},SponsorsActivityAction:{},SponsorsActivityConnection:{edges:[1402],nodes:[1399],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorsActivityEdge:{cursor:[1455],node:[1399],__typename:[1455]},SponsorsActivityOrder:{field:[1404],direction:[796],__typename:[1455]},SponsorsActivityOrderField:{},SponsorsActivityPeriod:{},SponsorsCountryOrRegionCode:{},SponsorsGoal:{description:[1455],kind:[1408],percentComplete:[609],targetValue:[609],title:[1455],__typename:[1455]},SponsorsGoalKind:{},SponsorsListing:{activeGoal:[1407],activeStripeConnectAccount:[1456],billingCountryOrRegion:[1455],contactEmailAddress:[1455],createdAt:[330],dashboardResourcePath:[1518],dashboardUrl:[1518],featuredItems:[1411,{featureableTypes:[1412,`[SponsorsListingFeaturedItemFeatureableType!]`]}],fiscalHost:[841],fullDescription:[1455],fullDescriptionHTML:[599],id:[605],isPublic:[104],name:[1455],nextPayoutDate:[329],residenceCountryOrRegion:[1455],resourcePath:[1518],shortDescription:[1455],slug:[1455],sponsorable:[1393],tiers:[1415,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1417],includeUnpublished:[104]}],url:[1518],__typename:[1455]},SponsorsListingFeatureableItem:{on_Repository:[1207],on_User:[1697],on_Node:[788],on_PackageOwner:[882],on_ProjectOwner:[946],on_ProjectV2Recent:[1007],on_RepositoryInfo:[1229],on_Starrable:[1438],on_Subscribable:[1465],on_UniformResourceLocatable:[1530],on_Actor:[12],on_Agentic:[63],on_ProfileOwner:[928],on_ProjectV2Owner:[1005],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],__typename:[1455]},SponsorsListingFeaturedItem:{createdAt:[330],description:[1455],featureable:[1410],id:[605],position:[609],sponsorsListing:[1409],updatedAt:[330],__typename:[1455]},SponsorsListingFeaturedItemFeatureableType:{},SponsorsTier:{adminInfo:[1414],closestLesserValueTier:[1413],createdAt:[330],description:[1455],descriptionHTML:[599],id:[605],isCustomAmount:[104],isOneTime:[104],monthlyPriceInCents:[609],monthlyPriceInDollars:[609],name:[1455],sponsorsListing:[1409],updatedAt:[330],__typename:[1455]},SponsorsTierAdminInfo:{isDraft:[104],isPublished:[104],isRetired:[104],sponsorships:[1420,{after:[1455],before:[1455],first:[609],last:[609],includePrivate:[104],orderBy:[1427]}],__typename:[1455]},SponsorsTierConnection:{edges:[1416],nodes:[1413],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorsTierEdge:{cursor:[1455],node:[1413],__typename:[1455]},SponsorsTierOrder:{field:[1418],direction:[796],__typename:[1455]},SponsorsTierOrderField:{},Sponsorship:{createdAt:[330],id:[605],isActive:[104],isOneTimePayment:[104],isSponsorOptedIntoEmail:[104],maintainer:[1697],paymentSource:[1429],privacyLevel:[1430],sponsor:[1697],sponsorEntity:[1383],sponsorable:[1393],tier:[1413],tierSelectedAt:[330],__typename:[1455]},SponsorshipConnection:{edges:[1421],nodes:[1419],pageInfo:[892],totalCount:[609],totalRecurringMonthlyPriceInCents:[609],totalRecurringMonthlyPriceInDollars:[609],__typename:[1455]},SponsorshipEdge:{cursor:[1455],node:[1419],__typename:[1455]},SponsorshipNewsletter:{author:[1697],body:[1455],createdAt:[330],id:[605],isPublished:[104],sponsorable:[1393],subject:[1455],updatedAt:[330],__typename:[1455]},SponsorshipNewsletterConnection:{edges:[1424],nodes:[1422],pageInfo:[892],totalCount:[609],__typename:[1455]},SponsorshipNewsletterEdge:{cursor:[1455],node:[1422],__typename:[1455]},SponsorshipNewsletterOrder:{field:[1426],direction:[796],__typename:[1455]},SponsorshipNewsletterOrderField:{},SponsorshipOrder:{field:[1428],direction:[796],__typename:[1455]},SponsorshipOrderField:{},SponsorshipPaymentSource:{},SponsorshipPrivacy:{},SquashMergeCommitMessage:{},SquashMergeCommitTitle:{},SshSignature:{email:[1455],isValid:[104],keyFingerprint:[1455],payload:[1455],signature:[1455],signer:[1697],state:[592],verifiedAt:[330],wasSignedByGitHub:[104],__typename:[1455]},StarOrder:{field:[1435],direction:[796],__typename:[1455]},StarOrderField:{},StargazerConnection:{edges:[1437],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},StargazerEdge:{cursor:[1455],node:[1697],starredAt:[330],__typename:[1455]},Starrable:{id:[605],stargazerCount:[609],stargazers:[1436,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1434]}],viewerHasStarred:[104],on_Gist:[573],on_Repository:[1207],on_Topic:[1506],__typename:[1455]},StarredRepositoryConnection:{edges:[1440],isOverLimit:[104],nodes:[1207],pageInfo:[892],totalCount:[609],__typename:[1455]},StarredRepositoryEdge:{cursor:[1455],node:[1207],starredAt:[330],__typename:[1455]},StartOrganizationMigrationInput:{clientMutationId:[1455],sourceOrgUrl:[1518],targetOrgName:[1455],targetEnterpriseId:[605],sourceAccessToken:[1455],__typename:[1455]},StartOrganizationMigrationPayload:{clientMutationId:[1455],orgMigration:[861],__typename:[1455]},StartRepositoryMigrationInput:{clientMutationId:[1455],sourceId:[605],ownerId:[605],sourceRepositoryUrl:[1518],repositoryName:[1455],continueOnError:[104],gitArchiveUrl:[1455],metadataArchiveUrl:[1455],accessToken:[1455],githubPat:[1455],skipReleases:[104],targetRepoVisibility:[1455],lockSource:[104],__typename:[1455]},StartRepositoryMigrationPayload:{clientMutationId:[1455],repositoryMigration:[1240],__typename:[1455]},Status:{combinedContexts:[1450,{after:[1455],before:[1455],first:[609],last:[609]}],commit:[191],context:[1452,{name:[1455,`String!`]}],contexts:[1452],id:[605],state:[1454],__typename:[1455]},StatusCheckConfiguration:{context:[1455],integrationId:[609],__typename:[1455]},StatusCheckConfigurationInput:{context:[1455],integrationId:[609],__typename:[1455]},StatusCheckRollup:{commit:[191],contexts:[1450,{after:[1455],before:[1455],first:[609],last:[609]}],id:[605],state:[1454],__typename:[1455]},StatusCheckRollupContext:{on_CheckRun:[144],on_StatusContext:[1452],on_Node:[788],on_RequirableByPullRequest:[1298],on_UniformResourceLocatable:[1530],__typename:[1455]},StatusCheckRollupContextConnection:{checkRunCount:[609],checkRunCountsByState:[152],edges:[1451],nodes:[1449],pageInfo:[892],statusContextCount:[609],statusContextCountsByState:[1453],totalCount:[609],__typename:[1455]},StatusCheckRollupContextEdge:{cursor:[1455],node:[1449],__typename:[1455]},StatusContext:{avatarUrl:[1518,{size:[609]}],commit:[191],context:[1455],createdAt:[330],creator:[12],description:[1455],id:[605],isRequired:[104,{pullRequestId:[605],pullRequestNumber:[609]}],state:[1454],targetUrl:[1518],__typename:[1455]},StatusContextStateCount:{count:[609],state:[1454],__typename:[1455]},StatusState:{},String:{},StripeConnectAccount:{accountId:[1455],billingCountryOrRegion:[1455],countryOrRegion:[1455],isActive:[104],sponsorsListing:[1409],stripeDashboardUrl:[1518],__typename:[1455]},SubIssueAddedEvent:{actor:[12],createdAt:[330],id:[605],subIssue:[623],__typename:[1455]},SubIssueRemovedEvent:{actor:[12],createdAt:[330],id:[605],subIssue:[623],__typename:[1455]},SubIssuesSummary:{completed:[609],percentCompleted:[609],total:[609],__typename:[1455]},SubmitPullRequestReviewInput:{clientMutationId:[1455],pullRequestId:[605],pullRequestReviewId:[605],event:[1074],body:[1455],__typename:[1455]},SubmitPullRequestReviewPayload:{clientMutationId:[1455],pullRequestReview:[1065],__typename:[1455]},Submodule:{branch:[1455],gitUrl:[1518],name:[1455],nameRaw:[92],path:[1455],pathRaw:[92],subprojectCommitOid:[588],__typename:[1455]},SubmoduleConnection:{edges:[1464],nodes:[1462],pageInfo:[892],totalCount:[609],__typename:[1455]},SubmoduleEdge:{cursor:[1455],node:[1462],__typename:[1455]},Subscribable:{id:[605],viewerCanSubscribe:[104],viewerSubscription:[1468],on_Commit:[191],on_Discussion:[438],on_Issue:[623],on_PullRequest:[1046],on_Repository:[1207],on_Team:[1476],__typename:[1455]},SubscribableThread:{id:[605],viewerThreadSubscriptionFormAction:[1504],viewerThreadSubscriptionStatus:[1505],on_Issue:[623],__typename:[1455]},SubscribedEvent:{actor:[12],createdAt:[330],id:[605],subscribable:[1465],__typename:[1455]},SubscriptionState:{},SuggestedReviewer:{isAuthor:[104],isCommenter:[104],reviewer:[1697],__typename:[1455]},SuggestedReviewerActor:{isAuthor:[104],isCommenter:[104],reviewer:[12],__typename:[1455]},SuggestedReviewerActorConnection:{edges:[1472],nodes:[1470],pageInfo:[892],totalCount:[609],__typename:[1455]},SuggestedReviewerActorEdge:{cursor:[1455],node:[1470],__typename:[1455]},Tag:{abbreviatedOid:[1455],commitResourcePath:[1518],commitUrl:[1518],id:[605],message:[1455],name:[1455],oid:[588],repository:[1207],tagger:[583],target:[587],__typename:[1455]},TagNamePatternParameters:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},TagNamePatternParametersInput:{name:[1455],negate:[104],operator:[1455],pattern:[1455],__typename:[1455]},Team:{ancestors:[1481,{after:[1455],before:[1455],first:[609],last:[609]}],avatarUrl:[1518,{size:[609]}],childTeams:[1481,{orderBy:[1490],userLogins:[1455,`[String!]`],immediateOnly:[104],after:[1455],before:[1455],first:[609],last:[609]}],combinedSlug:[1455],createdAt:[330],databaseId:[609],description:[1455],editTeamResourcePath:[1518],editTeamUrl:[1518],id:[605],invitations:[852,{after:[1455],before:[1455],first:[609],last:[609]}],memberStatuses:[1717,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1719]}],members:[1483,{after:[1455],before:[1455],first:[609],last:[609],query:[1455],membership:[1488],role:[1487],orderBy:[1485]}],membersResourcePath:[1518],membersUrl:[1518],name:[1455],newTeamResourcePath:[1518],newTeamUrl:[1518],notificationSetting:[1489],organization:[841],parentTeam:[1476],privacy:[1492],projectV2:[950,{number:[609,`Int!`]}],projectsV2:[955,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1003],filterBy:[970],query:[1455],minPermissionLevel:[1006]}],repositories:[1495,{after:[1455],before:[1455],first:[609],last:[609],query:[1455],orderBy:[1497]}],repositoriesResourcePath:[1518],repositoriesUrl:[1518],resourcePath:[1518],reviewRequestDelegationAlgorithm:[1499],reviewRequestDelegationEnabled:[104],reviewRequestDelegationMemberCount:[609],reviewRequestDelegationNotifyTeam:[104],slug:[1455],teamsResourcePath:[1518],teamsUrl:[1518],updatedAt:[330],url:[1518],viewerCanAdminister:[104],viewerCanSubscribe:[104],viewerSubscription:[1468],__typename:[1455]},TeamAddMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isLdapMapped:[104],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},TeamAddRepositoryAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isLdapMapped:[104],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},TeamAuditEntryData:{team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],on_OrgRestoreMemberMembershipTeamAuditEntryData:[832],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],__typename:[1455]},TeamChangeParentTeamAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isLdapMapped:[104],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],parentTeam:[1476],parentTeamName:[1455],parentTeamNameWas:[1455],parentTeamResourcePath:[1518],parentTeamUrl:[1518],parentTeamWas:[1476],parentTeamWasResourcePath:[1518],parentTeamWasUrl:[1518],team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},TeamConnection:{edges:[1482],nodes:[1476],pageInfo:[892],totalCount:[609],__typename:[1455]},TeamEdge:{cursor:[1455],node:[1476],__typename:[1455]},TeamMemberConnection:{edges:[1484],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},TeamMemberEdge:{cursor:[1455],memberAccessResourcePath:[1518],memberAccessUrl:[1518],node:[1697],role:[1487],__typename:[1455]},TeamMemberOrder:{field:[1486],direction:[796],__typename:[1455]},TeamMemberOrderField:{},TeamMemberRole:{},TeamMembershipType:{},TeamNotificationSetting:{},TeamOrder:{field:[1491],direction:[796],__typename:[1455]},TeamOrderField:{},TeamPrivacy:{},TeamRemoveMemberAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isLdapMapped:[104],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},TeamRemoveRepositoryAuditEntry:{action:[1455],actor:[82],actorIp:[1455],actorLocation:[15],actorLogin:[1455],actorResourcePath:[1518],actorUrl:[1518],createdAt:[924],id:[605],isLdapMapped:[104],operationType:[795],organization:[841],organizationName:[1455],organizationResourcePath:[1518],organizationUrl:[1518],repository:[1207],repositoryName:[1455],repositoryResourcePath:[1518],repositoryUrl:[1518],team:[1476],teamName:[1455],teamResourcePath:[1518],teamUrl:[1518],user:[1697],userLogin:[1455],userResourcePath:[1518],userUrl:[1518],__typename:[1455]},TeamRepositoryConnection:{edges:[1496],nodes:[1207],pageInfo:[892],totalCount:[609],__typename:[1455]},TeamRepositoryEdge:{cursor:[1455],node:[1207],permission:[1252],__typename:[1455]},TeamRepositoryOrder:{field:[1498],direction:[796],__typename:[1455]},TeamRepositoryOrderField:{},TeamReviewAssignmentAlgorithm:{},TeamReviewRequestable:{id:[605],name:[1455],slug:[1455],on_Team:[1476],__typename:[1455]},TeamRole:{},TextMatch:{fragment:[1455],highlights:[1503],property:[1455],__typename:[1455]},TextMatchHighlight:{beginIndice:[609],endIndice:[609],text:[1455],__typename:[1455]},ThreadSubscriptionFormAction:{},ThreadSubscriptionState:{},Topic:{id:[605],name:[1455],relatedTopics:[1506,{first:[609]}],repositories:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609],sponsorableOnly:[104]}],stargazerCount:[609],stargazers:[1436,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1434]}],viewerHasStarred:[104],__typename:[1455]},TopicAuditEntryData:{topic:[1506],topicName:[1455],on_RepoAddTopicAuditEntry:[1184],on_RepoRemoveTopicAuditEntry:[1205],__typename:[1455]},TopicSuggestionDeclineReason:{},TrackedIssueStates:{},TransferEnterpriseOrganizationInput:{clientMutationId:[1455],organizationId:[605],destinationEnterpriseId:[605],__typename:[1455]},TransferEnterpriseOrganizationPayload:{clientMutationId:[1455],organization:[841],__typename:[1455]},TransferIssueInput:{clientMutationId:[1455],issueId:[605],repositoryId:[605],createLabelsIfMissing:[104],__typename:[1455]},TransferIssuePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},TransferredEvent:{actor:[12],createdAt:[330],fromRepository:[1207],id:[605],issue:[623],__typename:[1455]},Tree:{abbreviatedOid:[1455],commitResourcePath:[1518],commitUrl:[1518],entries:[1516],id:[605],oid:[588],repository:[1207],__typename:[1455]},TreeEntry:{extension:[1455],isGenerated:[104],language:[697],lineCount:[609],mode:[609],name:[1455],nameRaw:[92],object:[587],oid:[588],path:[1455],pathRaw:[92],repository:[1207],size:[609],submodule:[1462],type:[1455],__typename:[1455]},TwoFactorCredentialSecurityType:{},URI:{},UnarchiveProjectV2ItemInput:{clientMutationId:[1455],projectId:[605],itemId:[605],__typename:[1455]},UnarchiveProjectV2ItemPayload:{clientMutationId:[1455],item:[972],__typename:[1455]},UnarchivePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],__typename:[1455]},UnarchivePullRequestPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},UnarchiveRepositoryInput:{clientMutationId:[1455],repositoryId:[605],__typename:[1455]},UnarchiveRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},UnassignedEvent:{actor:[12],assignable:[76],assignee:[78],createdAt:[330],id:[605],user:[1697],__typename:[1455]},UnfollowOrganizationInput:{clientMutationId:[1455],organizationId:[605],__typename:[1455]},UnfollowOrganizationPayload:{clientMutationId:[1455],organization:[841],__typename:[1455]},UnfollowUserInput:{clientMutationId:[1455],userId:[605],__typename:[1455]},UnfollowUserPayload:{clientMutationId:[1455],user:[1697],__typename:[1455]},UniformResourceLocatable:{resourcePath:[1518],url:[1518],on_Bot:[105],on_CheckRun:[144],on_ClosedEvent:[179],on_Commit:[191],on_ConvertToDraftEvent:[230],on_CrossReferencedEvent:[323],on_Gist:[573],on_Issue:[623],on_Mannequin:[719],on_MergedEvent:[766],on_Milestone:[771],on_Organization:[841],on_PullRequest:[1046],on_PullRequestCommit:[1052],on_ReadyForReviewEvent:[1112],on_Release:[1130],on_Repository:[1207],on_RepositoryTopic:[1276],on_ReviewDismissedEvent:[1320],on_User:[1697],on_Workflow:[1732],on_WorkflowRun:[1735],on_WorkflowRunFile:[1738],__typename:[1455]},UnknownSignature:{email:[1455],isValid:[104],payload:[1455],signature:[1455],signer:[1697],state:[592],verifiedAt:[330],wasSignedByGitHub:[104],__typename:[1455]},UnlabeledEvent:{actor:[12],createdAt:[330],id:[605],label:[690],labelable:[695],__typename:[1455]},UnlinkProjectV2FromRepositoryInput:{clientMutationId:[1455],projectId:[605],repositoryId:[605],__typename:[1455]},UnlinkProjectV2FromRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},UnlinkProjectV2FromTeamInput:{clientMutationId:[1455],projectId:[605],teamId:[605],__typename:[1455]},UnlinkProjectV2FromTeamPayload:{clientMutationId:[1455],team:[1476],__typename:[1455]},UnlinkRepositoryFromProjectInput:{clientMutationId:[1455],projectId:[605],repositoryId:[605],__typename:[1455]},UnlinkRepositoryFromProjectPayload:{clientMutationId:[1455],project:[929],repository:[1207],__typename:[1455]},UnlockLockableInput:{clientMutationId:[1455],lockableId:[605],__typename:[1455]},UnlockLockablePayload:{actor:[12],clientMutationId:[1455],unlockedRecord:[717],__typename:[1455]},UnlockedEvent:{actor:[12],createdAt:[330],id:[605],lockable:[717],__typename:[1455]},UnmarkDiscussionCommentAsAnswerInput:{clientMutationId:[1455],id:[605],__typename:[1455]},UnmarkDiscussionCommentAsAnswerPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},UnmarkFileAsViewedInput:{clientMutationId:[1455],pullRequestId:[605],path:[1455],__typename:[1455]},UnmarkFileAsViewedPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},UnmarkIssueAsDuplicateInput:{clientMutationId:[1455],duplicateId:[605],canonicalId:[605],__typename:[1455]},UnmarkIssueAsDuplicatePayload:{clientMutationId:[1455],duplicate:[666],__typename:[1455]},UnmarkProjectV2AsTemplateInput:{clientMutationId:[1455],projectId:[605],__typename:[1455]},UnmarkProjectV2AsTemplatePayload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},UnmarkedAsDuplicateEvent:{actor:[12],canonical:[666],createdAt:[330],duplicate:[666],id:[605],isCrossRepository:[104],__typename:[1455]},UnminimizeCommentInput:{clientMutationId:[1455],subjectId:[605],__typename:[1455]},UnminimizeCommentPayload:{clientMutationId:[1455],unminimizedComment:[779],__typename:[1455]},UnpinIssueCommentInput:{clientMutationId:[1455],issueCommentId:[605],__typename:[1455]},UnpinIssueCommentPayload:{clientMutationId:[1455],issueComment:[625],__typename:[1455]},UnpinIssueInput:{clientMutationId:[1455],issueId:[605],__typename:[1455]},UnpinIssuePayload:{clientMutationId:[1455],id:[605],issue:[623],__typename:[1455]},UnpinnedEvent:{actor:[12],createdAt:[330],id:[605],issue:[623],__typename:[1455]},UnresolveReviewThreadInput:{clientMutationId:[1455],threadId:[605],__typename:[1455]},UnresolveReviewThreadPayload:{clientMutationId:[1455],thread:[1076],__typename:[1455]},UnsubscribedEvent:{actor:[12],createdAt:[330],id:[605],subscribable:[1465],__typename:[1455]},Updatable:{viewerCanUpdate:[104],on_CommitComment:[195],on_Discussion:[438],on_DiscussionComment:[443],on_GistComment:[574],on_Issue:[623],on_IssueComment:[625],on_Project:[929],on_ProjectV2:[950],on_PullRequest:[1046],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],__typename:[1455]},UpdatableComment:{viewerCannotUpdateReasons:[189],on_CommitComment:[195],on_DiscussionComment:[443],on_GistComment:[574],on_Issue:[623],on_IssueComment:[625],on_PullRequest:[1046],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],__typename:[1455]},UpdateBranchProtectionRuleInput:{clientMutationId:[1455],branchProtectionRuleId:[605],pattern:[1455],requiresApprovingReviews:[104],requiredApprovingReviewCount:[609],requiresCommitSignatures:[104],requiresLinearHistory:[104],blocksCreations:[104],allowsForcePushes:[104],allowsDeletions:[104],isAdminEnforced:[104],requiresStatusChecks:[104],requiresStrictStatusChecks:[104],requiresCodeOwnerReviews:[104],dismissesStaleReviews:[104],restrictsReviewDismissals:[104],reviewDismissalActorIds:[605],bypassPullRequestActorIds:[605],bypassForcePushActorIds:[605],restrictsPushes:[104],pushActorIds:[605],requiredStatusCheckContexts:[1455],requiredStatusChecks:[1304],requiresDeployments:[104],requiredDeploymentEnvironments:[1455],requiresConversationResolution:[104],requireLastPushApproval:[104],lockBranch:[104],lockAllowsFetchAndMerge:[104],__typename:[1455]},UpdateBranchProtectionRulePayload:{branchProtectionRule:[109],clientMutationId:[1455],__typename:[1455]},UpdateCheckRunInput:{clientMutationId:[1455],repositoryId:[605],checkRunId:[605],name:[1455],detailsUrl:[1518],externalId:[1455],status:[1294],startedAt:[330],conclusion:[143],completedAt:[330],output:[149],actions:[145],__typename:[1455]},UpdateCheckRunPayload:{checkRun:[144],clientMutationId:[1455],__typename:[1455]},UpdateCheckSuitePreferencesInput:{clientMutationId:[1455],repositoryId:[605],autoTriggerPreferences:[159],__typename:[1455]},UpdateCheckSuitePreferencesPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},UpdateDiscussionCommentInput:{clientMutationId:[1455],commentId:[605],body:[1455],__typename:[1455]},UpdateDiscussionCommentPayload:{clientMutationId:[1455],comment:[443],__typename:[1455]},UpdateDiscussionInput:{clientMutationId:[1455],discussionId:[605],title:[1455],body:[1455],categoryId:[605],__typename:[1455]},UpdateDiscussionPayload:{clientMutationId:[1455],discussion:[438],__typename:[1455]},UpdateEnterpriseAdministratorRoleInput:{clientMutationId:[1455],enterpriseId:[605],login:[1455],role:[479],__typename:[1455]},UpdateEnterpriseAdministratorRolePayload:{clientMutationId:[1455],message:[1455],__typename:[1455]},UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],policyValue:[480],__typename:[1455]},UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseDefaultRepositoryPermissionSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[484],__typename:[1455]},UpdateEnterpriseDefaultRepositoryPermissionSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseDeployKeySettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseDeployKeySettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanCreateRepositoriesSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[502],membersCanCreateRepositoriesPolicyEnabled:[104],membersCanCreatePublicRepositories:[104],membersCanCreatePrivateRepositories:[104],membersCanCreateInternalRepositories:[104],__typename:[1455]},UpdateEnterpriseMembersCanCreateRepositoriesSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanDeleteIssuesSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanDeleteIssuesSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanDeleteRepositoriesSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanDeleteRepositoriesSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanInviteCollaboratorsSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanInviteCollaboratorsSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanMakePurchasesSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[503],__typename:[1455]},UpdateEnterpriseMembersCanMakePurchasesSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanUpdateProtectedBranchesSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseMembersCanViewDependencyInsightsSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseMembersCanViewDependencyInsightsSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseOrganizationProjectsSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseOrganizationProjectsSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseOwnerOrganizationRoleInput:{clientMutationId:[1455],enterpriseId:[605],organizationId:[605],organizationRole:[1331],__typename:[1455]},UpdateEnterpriseOwnerOrganizationRolePayload:{clientMutationId:[1455],message:[1455],__typename:[1455]},UpdateEnterpriseProfileInput:{clientMutationId:[1455],enterpriseId:[605],name:[1455],description:[1455],websiteUrl:[1455],location:[1455],securityContactEmail:[1455],__typename:[1455]},UpdateEnterpriseProfilePayload:{clientMutationId:[1455],enterprise:[471],__typename:[1455]},UpdateEnterpriseRepositoryProjectsSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[487],__typename:[1455]},UpdateEnterpriseRepositoryProjectsSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[485],__typename:[1455]},UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput:{clientMutationId:[1455],enterpriseId:[605],settingValue:[488],__typename:[1455]},UpdateEnterpriseTwoFactorAuthenticationRequiredSettingPayload:{clientMutationId:[1455],enterprise:[471],message:[1455],__typename:[1455]},UpdateEnvironmentInput:{clientMutationId:[1455],environmentId:[605],waitTimer:[609],reviewers:[605],preventSelfReview:[104],__typename:[1455]},UpdateEnvironmentPayload:{clientMutationId:[1455],environment:[543],__typename:[1455]},UpdateIpAllowListEnabledSettingInput:{clientMutationId:[1455],ownerId:[605],settingValue:[614],__typename:[1455]},UpdateIpAllowListEnabledSettingPayload:{clientMutationId:[1455],owner:[621],__typename:[1455]},UpdateIpAllowListEntryInput:{clientMutationId:[1455],ipAllowListEntryId:[605],allowListValue:[1455],name:[1455],isActive:[104],__typename:[1455]},UpdateIpAllowListEntryPayload:{clientMutationId:[1455],ipAllowListEntry:[615],__typename:[1455]},UpdateIpAllowListForInstalledAppsEnabledSettingInput:{clientMutationId:[1455],ownerId:[605],settingValue:[620],__typename:[1455]},UpdateIpAllowListForInstalledAppsEnabledSettingPayload:{clientMutationId:[1455],owner:[621],__typename:[1455]},UpdateIpAllowListUserLevelEnforcementEnabledSettingInput:{clientMutationId:[1455],ownerId:[605],settingValue:[622],__typename:[1455]},UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload:{clientMutationId:[1455],owner:[621],__typename:[1455]},UpdateIssueCommentInput:{clientMutationId:[1455],id:[605],body:[1455],__typename:[1455]},UpdateIssueCommentPayload:{clientMutationId:[1455],issueComment:[625],__typename:[1455]},UpdateIssueFieldInput:{clientMutationId:[1455],id:[605],name:[1455],description:[1455],options:[653],visibility:[661],__typename:[1455]},UpdateIssueFieldPayload:{clientMutationId:[1455],issueField:[662],__typename:[1455]},UpdateIssueFieldValueInput:{clientMutationId:[1455],issueId:[605],issueField:[641],__typename:[1455]},UpdateIssueFieldValuePayload:{clientMutationId:[1455],issue:[623],issueFieldValue:[657],__typename:[1455]},UpdateIssueInput:{clientMutationId:[1455],id:[605],title:[1455],body:[1455],assigneeIds:[605],milestoneId:[605],labelIds:[605],state:[670],projectIds:[605],issueTypeId:[605],agentAssignment:[62],__typename:[1455]},UpdateIssueIssueTypeInput:{clientMutationId:[1455],issueTypeId:[605],issueId:[605],__typename:[1455]},UpdateIssueIssueTypePayload:{clientMutationId:[1455],issue:[623],__typename:[1455]},UpdateIssuePayload:{actor:[12],clientMutationId:[1455],issue:[623],__typename:[1455]},UpdateIssueTypeInput:{clientMutationId:[1455],issueTypeId:[605],isEnabled:[104],name:[1455],description:[1455],color:[683],__typename:[1455]},UpdateIssueTypePayload:{clientMutationId:[1455],issueType:[680],__typename:[1455]},UpdateLabelInput:{clientMutationId:[1455],id:[605],color:[1455],description:[1455],name:[1455],__typename:[1455]},UpdateLabelPayload:{clientMutationId:[1455],label:[690],__typename:[1455]},UpdateNotificationRestrictionSettingInput:{clientMutationId:[1455],ownerId:[605],settingValue:[789],__typename:[1455]},UpdateNotificationRestrictionSettingPayload:{clientMutationId:[1455],owner:[1727],__typename:[1455]},UpdateOrganizationAllowPrivateRepositoryForkingSettingInput:{clientMutationId:[1455],organizationId:[605],forkingEnabled:[104],__typename:[1455]},UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload:{clientMutationId:[1455],message:[1455],organization:[841],__typename:[1455]},UpdateOrganizationWebCommitSignoffSettingInput:{clientMutationId:[1455],organizationId:[605],webCommitSignoffRequired:[104],__typename:[1455]},UpdateOrganizationWebCommitSignoffSettingPayload:{clientMutationId:[1455],message:[1455],organization:[841],__typename:[1455]},UpdateParameters:{updateAllowsFetchAndMerge:[104],__typename:[1455]},UpdateParametersInput:{updateAllowsFetchAndMerge:[104],__typename:[1455]},UpdatePatreonSponsorabilityInput:{clientMutationId:[1455],sponsorableLogin:[1455],enablePatreonSponsorships:[104],__typename:[1455]},UpdatePatreonSponsorabilityPayload:{clientMutationId:[1455],sponsorsListing:[1409],__typename:[1455]},UpdateProjectCardInput:{clientMutationId:[1455],projectCardId:[605],isArchived:[104],note:[1455],__typename:[1455]},UpdateProjectCardPayload:{clientMutationId:[1455],projectCard:[930],__typename:[1455]},UpdateProjectColumnInput:{clientMutationId:[1455],projectColumnId:[605],name:[1455],__typename:[1455]},UpdateProjectColumnPayload:{clientMutationId:[1455],projectColumn:[937],__typename:[1455]},UpdateProjectInput:{clientMutationId:[1455],projectId:[605],name:[1455],body:[1455],state:[948],public:[104],__typename:[1455]},UpdateProjectPayload:{clientMutationId:[1455],project:[929],__typename:[1455]},UpdateProjectV2CollaboratorsInput:{clientMutationId:[1455],projectId:[605],collaborators:[954],__typename:[1455]},UpdateProjectV2CollaboratorsPayload:{clientMutationId:[1455],collaborators:[952,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},UpdateProjectV2DraftIssueInput:{clientMutationId:[1455],draftIssueId:[605],title:[1455],body:[1455],assigneeIds:[605],__typename:[1455]},UpdateProjectV2DraftIssuePayload:{clientMutationId:[1455],draftIssue:[463],__typename:[1455]},UpdateProjectV2FieldInput:{clientMutationId:[1455],fieldId:[605],name:[1455],singleSelectOptions:[1012],iterationConfiguration:[1001],__typename:[1455]},UpdateProjectV2FieldPayload:{clientMutationId:[1455],projectV2Field:[961],__typename:[1455]},UpdateProjectV2Input:{clientMutationId:[1455],projectId:[605],title:[1455],shortDescription:[1455],readme:[1455],closed:[104],public:[104],__typename:[1455]},UpdateProjectV2ItemFieldValueInput:{clientMutationId:[1455],projectId:[605],itemId:[605],fieldId:[605],value:[969],__typename:[1455]},UpdateProjectV2ItemFieldValuePayload:{clientMutationId:[1455],projectV2Item:[972],__typename:[1455]},UpdateProjectV2ItemPositionInput:{clientMutationId:[1455],projectId:[605],itemId:[605],afterId:[605],__typename:[1455]},UpdateProjectV2ItemPositionPayload:{clientMutationId:[1455],items:[973,{after:[1455],before:[1455],first:[609],last:[609]}],__typename:[1455]},UpdateProjectV2Payload:{clientMutationId:[1455],projectV2:[950],__typename:[1455]},UpdateProjectV2StatusUpdateInput:{clientMutationId:[1455],statusUpdateId:[605],startDate:[329],targetDate:[329],status:[1025],body:[1455],__typename:[1455]},UpdateProjectV2StatusUpdatePayload:{clientMutationId:[1455],statusUpdate:[1021],__typename:[1455]},UpdatePullRequestBranchInput:{clientMutationId:[1455],pullRequestId:[605],expectedHeadOid:[588],updateMethod:[1048],__typename:[1455]},UpdatePullRequestBranchPayload:{clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},UpdatePullRequestInput:{clientMutationId:[1455],pullRequestId:[605],baseRefName:[1455],title:[1455],body:[1455],state:[1091],maintainerCanModify:[104],assigneeIds:[605],milestoneId:[605],labelIds:[605],projectIds:[605],__typename:[1455]},UpdatePullRequestPayload:{actor:[12],clientMutationId:[1455],pullRequest:[1046],__typename:[1455]},UpdatePullRequestReviewCommentInput:{clientMutationId:[1455],pullRequestReviewCommentId:[605],body:[1455],__typename:[1455]},UpdatePullRequestReviewCommentPayload:{clientMutationId:[1455],pullRequestReviewComment:[1066],__typename:[1455]},UpdatePullRequestReviewInput:{clientMutationId:[1455],pullRequestReviewId:[605],body:[1455],__typename:[1455]},UpdatePullRequestReviewPayload:{clientMutationId:[1455],pullRequestReview:[1065],__typename:[1455]},UpdateRefInput:{clientMutationId:[1455],refId:[605],oid:[588],force:[104],__typename:[1455]},UpdateRefPayload:{clientMutationId:[1455],ref:[1113],__typename:[1455]},UpdateRefsInput:{clientMutationId:[1455],repositoryId:[605],refUpdates:[1120],__typename:[1455]},UpdateRefsPayload:{clientMutationId:[1455],__typename:[1455]},UpdateRepositoryCustomPropertyInput:{clientMutationId:[1455],description:[1455],allowedValues:[1455],required:[104],defaultValue:[1455],regex:[1455],repositoryCustomPropertyId:[605],valuesEditableBy:[1223],requireExplicitValues:[104],__typename:[1455]},UpdateRepositoryCustomPropertyPayload:{clientMutationId:[1455],repositoryCustomProperty:[1217],__typename:[1455]},UpdateRepositoryInput:{clientMutationId:[1455],repositoryId:[605],name:[1455],description:[1455],template:[104],homepageUrl:[1518],hasWikiEnabled:[104],hasIssuesEnabled:[104],hasProjectsEnabled:[104],hasDiscussionsEnabled:[104],hasSponsorshipsEnabled:[104],hasPullRequestsEnabled:[104],pullRequestCreationPolicy:[1058],__typename:[1455]},UpdateRepositoryPayload:{clientMutationId:[1455],repository:[1207],__typename:[1455]},UpdateRepositoryRulesetInput:{clientMutationId:[1455],repositoryRulesetId:[605],name:[1455],target:[1274],rules:[1262],conditions:[1259],enforcement:[1332],bypassActors:[1271],__typename:[1455]},UpdateRepositoryRulesetPayload:{clientMutationId:[1455],ruleset:[1266],__typename:[1455]},UpdateRepositoryWebCommitSignoffSettingInput:{clientMutationId:[1455],repositoryId:[605],webCommitSignoffRequired:[104],__typename:[1455]},UpdateRepositoryWebCommitSignoffSettingPayload:{clientMutationId:[1455],message:[1455],repository:[1207],__typename:[1455]},UpdateSponsorshipPreferencesInput:{clientMutationId:[1455],sponsorId:[605],sponsorLogin:[1455],sponsorableId:[605],sponsorableLogin:[1455],receiveEmails:[104],privacyLevel:[1430],__typename:[1455]},UpdateSponsorshipPreferencesPayload:{clientMutationId:[1455],sponsorship:[1419],__typename:[1455]},UpdateSubscriptionInput:{clientMutationId:[1455],subscribableId:[605],state:[1468],__typename:[1455]},UpdateSubscriptionPayload:{clientMutationId:[1455],subscribable:[1465],__typename:[1455]},UpdateTeamReviewAssignmentInput:{clientMutationId:[1455],id:[605],enabled:[104],algorithm:[1499],teamMemberCount:[609],notifyTeam:[104],removeTeamRequest:[104],includeChildTeamMembers:[104],countMembersAlreadyRequested:[104],excludedTeamMemberIds:[605],__typename:[1455]},UpdateTeamReviewAssignmentPayload:{clientMutationId:[1455],team:[1476],__typename:[1455]},UpdateTeamsRepositoryInput:{clientMutationId:[1455],repositoryId:[605],teamIds:[605],permission:[1252],__typename:[1455]},UpdateTeamsRepositoryPayload:{clientMutationId:[1455],repository:[1207],teams:[1476],__typename:[1455]},UpdateTopicsInput:{clientMutationId:[1455],repositoryId:[605],topicNames:[1455],__typename:[1455]},UpdateTopicsPayload:{clientMutationId:[1455],invalidTopicNames:[1455],repository:[1207],__typename:[1455]},UpdateUserListInput:{clientMutationId:[1455],listId:[605],name:[1455],description:[1455],isPrivate:[104],__typename:[1455]},UpdateUserListPayload:{clientMutationId:[1455],list:[1706],__typename:[1455]},UpdateUserListsForItemInput:{clientMutationId:[1455],itemId:[605],listIds:[605],suggestedListIds:[605],__typename:[1455]},UpdateUserListsForItemPayload:{clientMutationId:[1455],item:[1709],lists:[1706],user:[1697],__typename:[1455]},User:{anyPinnableItems:[104,{type:[908]}],avatarUrl:[1518,{size:[609]}],bio:[1455],bioHTML:[599],canReceiveOrganizationEmailsWhenNotificationsRestricted:[104,{login:[1455,`String!`]}],commitComments:[196,{after:[1455],before:[1455],first:[609],last:[609]}],company:[1455],companyHTML:[599],contributionsCollection:[223,{organizationID:[605],from:[330],to:[330]}],copilotEndpoints:[236],createdAt:[330],databaseId:[609],email:[1455],enterprises:[483,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[505],membershipType:[504]}],estimatedNextSponsorsPayoutInCents:[609],followers:[568,{after:[1455],before:[1455],first:[609],last:[609]}],following:[569,{after:[1455],before:[1455],first:[609],last:[609]}],gist:[573,{name:[1455,`String!`]}],gistComments:[575,{after:[1455],before:[1455],first:[609],last:[609]}],gists:[577,{privacy:[582],orderBy:[580],after:[1455],before:[1455],first:[609],last:[609]}],hasSponsorsListing:[104],hovercard:[603,{primarySubjectId:[605]}],id:[605],interactionAbility:[1230],isBountyHunter:[104],isCampusExpert:[104],isDeveloperProgramMember:[104],isEmployee:[104],isFollowingViewer:[104],isGitHubStar:[104],isHireable:[104],isSiteAdmin:[104],isSponsoredBy:[104,{accountLogin:[1455,`String!`]}],isSponsoringViewer:[104],isViewer:[104],issueComments:[626,{orderBy:[628],after:[1455],before:[1455],first:[609],last:[609]}],issues:[632,{orderBy:[667],labels:[1455,`[String!]`],states:[670,`[IssueState!]`],filterBy:[665],after:[1455],before:[1455],first:[609],last:[609]}],itemShowcase:[927],lifetimeReceivedSponsorshipValues:[1385,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1387]}],lists:[1707,{after:[1455],before:[1455],first:[609],last:[609]}],location:[1455],login:[1455],monthlyEstimatedSponsorsIncomeInCents:[609],name:[1455],organization:[841,{login:[1455,`String!`]}],organizationVerifiedDomainEmails:[1455,{login:[1455,`String!`]}],organizations:[846,{orderBy:[864],after:[1455],before:[1455],first:[609],last:[609]}],packages:[873,{after:[1455],before:[1455],first:[609],last:[609],names:[1455,`[String]`],repositoryId:[605],packageType:[885],orderBy:[880]}],pinnableItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItems:[906,{types:[908,`[PinnableItemType!]`],after:[1455],before:[1455],first:[609],last:[609]}],pinnedItemsRemaining:[609],project:[929,{number:[609,`Int!`]}],projectV2:[950,{number:[609,`Int!`]}],projects:[942,{orderBy:[944],search:[1455],states:[948,`[ProjectState!]`],after:[1455],before:[1455],first:[609],last:[609]}],projectsResourcePath:[1518],projectsUrl:[1518],projectsV2:[955,{query:[1455],orderBy:[1003],minPermissionLevel:[1006],after:[1455],before:[1455],first:[609],last:[609]}],pronouns:[1455],publicKeys:[1042,{after:[1455],before:[1455],first:[609],last:[609]}],pullRequests:[1056,{states:[1081,`[PullRequestState!]`],labels:[1455,`[String!]`],headRefName:[1455],baseRefName:[1455],orderBy:[667],after:[1455],before:[1455],first:[609],last:[609]}],recentProjects:[955,{after:[1455],before:[1455],first:[609],last:[609]}],repositories:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609],isArchived:[104],isFork:[104]}],repositoriesContributedTo:[1214,{privacy:[1254],orderBy:[1249],isLocked:[104],hasIssues:[104],includeUserRepositories:[104],contributionTypes:[1216,`[RepositoryContributionType]`],after:[1455],before:[1455],first:[609],last:[609]}],repository:[1207,{name:[1455,`String!`],followRenames:[104]}],repositoryDiscussionComments:[444,{after:[1455],before:[1455],first:[609],last:[609],repositoryId:[605],onlyAnswers:[104]}],repositoryDiscussions:[446,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[448],repositoryId:[605],answered:[104],states:[456,`[DiscussionState!]`]}],resourcePath:[1518],savedReplies:[1339,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1341]}],socialAccounts:[1380,{after:[1455],before:[1455],first:[609],last:[609]}],sponsoring:[1389,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1391]}],sponsors:[1389,{after:[1455],before:[1455],first:[609],last:[609],tierId:[605],orderBy:[1391]}],sponsorsActivities:[1401,{after:[1455],before:[1455],first:[609],last:[609],period:[1405],since:[330],until:[330],orderBy:[1403],actions:[1400,`[SponsorsActivityAction!]`],includeAsSponsor:[104],includePrivate:[104]}],sponsorsListing:[1409],sponsorshipForViewerAsSponsor:[1419,{activeOnly:[104]}],sponsorshipForViewerAsSponsorable:[1419,{activeOnly:[104]}],sponsorshipNewsletters:[1423,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1425]}],sponsorshipsAsMaintainer:[1420,{after:[1455],before:[1455],first:[609],last:[609],includePrivate:[104],orderBy:[1427],activeOnly:[104]}],sponsorshipsAsSponsor:[1420,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1427],maintainerLogins:[1455,`[String!]`],activeOnly:[104]}],starredRepositories:[1439,{after:[1455],before:[1455],first:[609],last:[609],ownedByViewer:[104],orderBy:[1434]}],status:[1716],suggestedListNames:[1712],topRepositories:[1214,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1249,`RepositoryOrder!`],since:[330]}],totalSponsorshipAmountAsSponsorInCents:[609,{since:[330],until:[330],sponsorableLogins:[1455,`[String!]`]}],twitterUsername:[1455],updatedAt:[330],url:[1518],userViewType:[1721],viewerCanChangePinnedItems:[104],viewerCanCreateProjects:[104],viewerCanFollow:[104],viewerCanSponsor:[104],viewerCopilotAgentCreatesChannel:[1455],viewerCopilotAgentLogUpdatesChannel:[1455],viewerCopilotAgentTaskUpdatesChannel:[1455],viewerCopilotAgentUpdatesChannel:[1455],viewerIsFollowing:[104],viewerIsSponsoring:[104],watching:[1214,{privacy:[1254],visibility:[1279],orderBy:[1249],affiliations:[1208,`[RepositoryAffiliation]`],ownerAffiliations:[1208,`[RepositoryAffiliation]`],isLocked:[104],hasIssuesEnabled:[104],after:[1455],before:[1455],first:[609],last:[609]}],websiteUrl:[1518],__typename:[1455]},UserBlockDuration:{},UserBlockedEvent:{actor:[12],blockDuration:[1698],createdAt:[330],id:[605],subject:[1697],__typename:[1455]},UserConnection:{edges:[1704],nodes:[1697],pageInfo:[892],totalCount:[609],__typename:[1455]},UserContentEdit:{createdAt:[330],deletedAt:[330],deletedBy:[12],diff:[1455],editedAt:[330],editor:[12],id:[605],updatedAt:[330],__typename:[1455]},UserContentEditConnection:{edges:[1703],nodes:[1701],pageInfo:[892],totalCount:[609],__typename:[1455]},UserContentEditEdge:{cursor:[1455],node:[1701],__typename:[1455]},UserEdge:{cursor:[1455],node:[1697],__typename:[1455]},UserEmailMetadata:{primary:[104],type:[1455],value:[1455],__typename:[1455]},UserList:{createdAt:[330],description:[1455],id:[605],isPrivate:[104],items:[1710,{after:[1455],before:[1455],first:[609],last:[609]}],lastAddedAt:[330],name:[1455],slug:[1455],updatedAt:[330],user:[1697],__typename:[1455]},UserListConnection:{edges:[1708],nodes:[1706],pageInfo:[892],totalCount:[609],__typename:[1455]},UserListEdge:{cursor:[1455],node:[1706],__typename:[1455]},UserListItems:{on_Repository:[1207],on_Node:[788],on_PackageOwner:[882],on_ProjectOwner:[946],on_ProjectV2Recent:[1007],on_RepositoryInfo:[1229],on_Starrable:[1438],on_Subscribable:[1465],on_UniformResourceLocatable:[1530],__typename:[1455]},UserListItemsConnection:{edges:[1711],nodes:[1709],pageInfo:[892],totalCount:[609],__typename:[1455]},UserListItemsEdge:{cursor:[1455],node:[1709],__typename:[1455]},UserListSuggestion:{id:[605],name:[1455],__typename:[1455]},UserNamespaceRepository:{id:[605],name:[1455],nameWithOwner:[1455],owner:[1251],__typename:[1455]},UserNamespaceRepositoryConnection:{edges:[1715],nodes:[1713],pageInfo:[892],totalCount:[609],__typename:[1455]},UserNamespaceRepositoryEdge:{cursor:[1455],node:[1713],__typename:[1455]},UserStatus:{createdAt:[330],emoji:[1455],emojiHTML:[599],expiresAt:[330],id:[605],indicatesLimitedAvailability:[104],message:[1455],organization:[841],updatedAt:[330],user:[1697],__typename:[1455]},UserStatusConnection:{edges:[1718],nodes:[1716],pageInfo:[892],totalCount:[609],__typename:[1455]},UserStatusEdge:{cursor:[1455],node:[1716],__typename:[1455]},UserStatusOrder:{field:[1720],direction:[796],__typename:[1455]},UserStatusOrderField:{},UserViewType:{},VerifiableDomain:{createdAt:[330],databaseId:[609],dnsHostName:[1518],domain:[1518],hasFoundHostName:[104],hasFoundVerificationToken:[104],id:[605],isApproved:[104],isRequiredForPolicyEnforcement:[104],isVerified:[104],owner:[1727],punycodeEncodedDomain:[1518],tokenExpirationTime:[330],updatedAt:[330],verificationToken:[1455],__typename:[1455]},VerifiableDomainConnection:{edges:[1724],nodes:[1722],pageInfo:[892],totalCount:[609],__typename:[1455]},VerifiableDomainEdge:{cursor:[1455],node:[1722],__typename:[1455]},VerifiableDomainOrder:{field:[1726],direction:[796],__typename:[1455]},VerifiableDomainOrderField:{},VerifiableDomainOwner:{on_Enterprise:[471],on_Organization:[841],on_Node:[788],on_Actor:[12],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Owner:[1005],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_UniformResourceLocatable:[1530],__typename:[1455]},VerifyVerifiableDomainInput:{clientMutationId:[1455],id:[605],__typename:[1455]},VerifyVerifiableDomainPayload:{clientMutationId:[1455],domain:[1722],__typename:[1455]},ViewerHovercardContext:{message:[1455],octicon:[1455],viewer:[1697],__typename:[1455]},Votable:{upvoteCount:[609],viewerCanUpvote:[104],viewerHasUpvoted:[104],on_Discussion:[438],on_DiscussionComment:[443],__typename:[1455]},Workflow:{createdAt:[330],databaseId:[609],id:[605],name:[1455],resourcePath:[1518],runs:[1736,{after:[1455],before:[1455],first:[609],last:[609],orderBy:[1739]}],state:[1741],updatedAt:[330],url:[1518],__typename:[1455]},WorkflowFileReference:{path:[1455],ref:[1455],repositoryId:[609],sha:[1455],__typename:[1455]},WorkflowFileReferenceInput:{path:[1455],ref:[1455],repositoryId:[609],sha:[1455],__typename:[1455]},WorkflowRun:{checkSuite:[158],createdAt:[330],databaseId:[609],deploymentReviews:[421,{after:[1455],before:[1455],first:[609],last:[609]}],event:[1455],file:[1738],id:[605],pendingDeploymentRequests:[418,{after:[1455],before:[1455],first:[609],last:[609]}],resourcePath:[1518],runNumber:[609],updatedAt:[330],url:[1518],workflow:[1732],__typename:[1455]},WorkflowRunConnection:{edges:[1737],nodes:[1735],pageInfo:[892],totalCount:[609],__typename:[1455]},WorkflowRunEdge:{cursor:[1455],node:[1735],__typename:[1455]},WorkflowRunFile:{id:[605],path:[1455],repositoryFileUrl:[1518],repositoryName:[1518],resourcePath:[1518],run:[1735],url:[1518],viewerCanPushRepository:[104],viewerCanReadRepository:[104],__typename:[1455]},WorkflowRunOrder:{field:[1740],direction:[796],__typename:[1455]},WorkflowRunOrderField:{},WorkflowState:{},WorkflowsParameters:{doNotEnforceOnCreate:[104],workflows:[1733],__typename:[1455]},WorkflowsParametersInput:{doNotEnforceOnCreate:[104],workflows:[1734],__typename:[1455]},X509Certificate:{},_Any:{},_Entity:{on_AddedToMergeQueueEvent:[59],on_AddedToProjectEvent:[60],on_AddedToProjectV2Event:[61],on_App:[65],on_AssignedEvent:[77],on_AutoMergeDisabledEvent:[85],on_AutoMergeEnabledEvent:[86],on_AutoRebaseEnabledEvent:[88],on_AutoSquashEnabledEvent:[89],on_AutomaticBaseChangeFailedEvent:[90],on_AutomaticBaseChangeSucceededEvent:[91],on_BaseRefChangedEvent:[93],on_BaseRefDeletedEvent:[94],on_BaseRefForcePushedEvent:[95],on_Blob:[99],on_BlockedByAddedEvent:[100],on_BlockedByRemovedEvent:[101],on_BlockingAddedEvent:[102],on_BlockingRemovedEvent:[103],on_Bot:[105],on_BranchProtectionRule:[109],on_BypassForcePushAllowance:[117],on_BypassPullRequestAllowance:[120],on_CWE:[124],on_CheckRun:[144],on_CheckSuite:[158],on_ClosedEvent:[179],on_CodeOfConduct:[181],on_CommentDeletedEvent:[190],on_Commit:[191],on_CommitComment:[195],on_CommitCommentThread:[198],on_Comparison:[211],on_ConnectedEvent:[214],on_ConvertToDraftEvent:[230],on_ConvertedFromDraftEvent:[231],on_ConvertedNoteToIssueEvent:[232],on_ConvertedToDiscussionEvent:[233],on_CrossReferencedEvent:[323],on_DemilestonedEvent:[393],on_DependencyGraphManifest:[400],on_DeployKey:[403],on_DeployedEvent:[406],on_Deployment:[407],on_DeploymentEnvironmentChangedEvent:[410],on_DeploymentReview:[420],on_DeploymentStatus:[428],on_DisconnectedEvent:[437],on_Discussion:[438],on_DiscussionCategory:[439],on_DiscussionComment:[443],on_DiscussionPoll:[450],on_DiscussionPollOption:[451],on_DraftIssue:[463],on_Enterprise:[471],on_EnterpriseAdministratorInvitation:[474],on_EnterpriseIdentityProvider:[491],on_EnterpriseMemberInvitation:[495],on_EnterpriseRepositoryInfo:[514],on_EnterpriseServerInstallation:[517],on_EnterpriseServerUserAccount:[524],on_EnterpriseServerUserAccountEmail:[527],on_EnterpriseServerUserAccountsUpload:[534],on_EnterpriseUserAccount:[540],on_Environment:[543],on_ExternalIdentity:[549],on_Gist:[573],on_GistComment:[574],on_HeadRefDeletedEvent:[600],on_HeadRefForcePushedEvent:[601],on_HeadRefRestoredEvent:[602],on_IpAllowListEntry:[615],on_Issue:[623],on_IssueComment:[625],on_IssueCommentPinnedEvent:[630],on_IssueCommentUnpinnedEvent:[631],on_IssueFieldAddedEvent:[638],on_IssueFieldChangedEvent:[639],on_IssueFieldDate:[643],on_IssueFieldDateValue:[644],on_IssueFieldNumber:[645],on_IssueFieldNumberValue:[646],on_IssueFieldRemovedEvent:[649],on_IssueFieldSingleSelect:[650],on_IssueFieldSingleSelectOption:[651],on_IssueFieldSingleSelectValue:[654],on_IssueFieldText:[655],on_IssueFieldTextValue:[656],on_IssueType:[680],on_IssueTypeAddedEvent:[681],on_IssueTypeChangedEvent:[682],on_IssueTypeRemovedEvent:[688],on_Label:[690],on_LabeledEvent:[696],on_Language:[697],on_License:[703],on_LinkedBranch:[711],on_LockedEvent:[718],on_Mannequin:[719],on_MarkedAsDuplicateEvent:[732],on_MarketplaceCategory:[733],on_MarketplaceListing:[734],on_MemberFeatureRequestNotification:[741],on_MembersCanDeleteReposClearAuditEntry:[743],on_MembersCanDeleteReposDisableAuditEntry:[744],on_MembersCanDeleteReposEnableAuditEntry:[745],on_MentionedEvent:[746],on_MergeQueue:[753],on_MergeQueueEntry:[755],on_MergedEvent:[766],on_MigrationSource:[768],on_Milestone:[771],on_MilestonedEvent:[778],on_MovedColumnsInProjectEvent:[786],on_OIDCProvider:[790],on_OauthApplicationCreateAuditEntry:[793],on_OrgAddBillingManagerAuditEntry:[797],on_OrgAddMemberAuditEntry:[798],on_OrgBlockUserAuditEntry:[800],on_OrgConfigDisableCollaboratorsOnlyAuditEntry:[801],on_OrgConfigEnableCollaboratorsOnlyAuditEntry:[802],on_OrgCreateAuditEntry:[803],on_OrgDisableOauthAppRestrictionsAuditEntry:[805],on_OrgDisableSamlAuditEntry:[806],on_OrgDisableTwoFactorRequirementAuditEntry:[807],on_OrgEnableOauthAppRestrictionsAuditEntry:[808],on_OrgEnableSamlAuditEntry:[809],on_OrgEnableTwoFactorRequirementAuditEntry:[810],on_OrgInviteMemberAuditEntry:[813],on_OrgInviteToBusinessAuditEntry:[814],on_OrgOauthAppAccessApprovedAuditEntry:[815],on_OrgOauthAppAccessBlockedAuditEntry:[816],on_OrgOauthAppAccessDeniedAuditEntry:[817],on_OrgOauthAppAccessRequestedAuditEntry:[818],on_OrgOauthAppAccessUnblockedAuditEntry:[819],on_OrgRemoveBillingManagerAuditEntry:[820],on_OrgRemoveMemberAuditEntry:[822],on_OrgRemoveOutsideCollaboratorAuditEntry:[825],on_OrgRestoreMemberAuditEntry:[828],on_OrgUnblockUserAuditEntry:[833],on_OrgUpdateDefaultRepositoryPermissionAuditEntry:[834],on_OrgUpdateMemberAuditEntry:[836],on_OrgUpdateMemberRepositoryCreationPermissionAuditEntry:[838],on_OrgUpdateMemberRepositoryInvitationPermissionAuditEntry:[840],on_Organization:[841],on_OrganizationIdentityProvider:[850],on_OrganizationInvitation:[851],on_Package:[872],on_PackageFile:[875],on_PackageTag:[884],on_PackageVersion:[886],on_ParentIssueAddedEvent:[893],on_ParentIssueRemovedEvent:[894],on_PinnedDiscussion:[909],on_PinnedEnvironment:[914],on_PinnedEvent:[919],on_PinnedIssue:[920],on_PinnedIssueComment:[921],on_PrivateRepositoryForkingDisableAuditEntry:[925],on_PrivateRepositoryForkingEnableAuditEntry:[926],on_Project:[929],on_ProjectCard:[930],on_ProjectColumn:[937],on_ProjectV2:[950],on_ProjectV2Field:[959],on_ProjectV2Item:[972],on_ProjectV2ItemFieldDateValue:[976],on_ProjectV2ItemFieldIterationValue:[977],on_ProjectV2ItemFieldNumberValue:[980],on_ProjectV2ItemFieldSingleSelectValue:[984],on_ProjectV2ItemFieldTextValue:[985],on_ProjectV2ItemStatusChangedEvent:[996],on_ProjectV2IterationField:[999],on_ProjectV2SingleSelectField:[1009],on_ProjectV2StatusUpdate:[1021],on_ProjectV2View:[1026],on_ProjectV2Workflow:[1032],on_PublicKey:[1041],on_PullRequest:[1046],on_PullRequestCommit:[1052],on_PullRequestCommitCommentThread:[1053],on_PullRequestReview:[1065],on_PullRequestReviewComment:[1066],on_PullRequestReviewThread:[1076],on_PullRequestThread:[1083],on_Push:[1092],on_PushAllowance:[1093],on_Query:[1097],on_Reaction:[1102],on_ReadyForReviewEvent:[1112],on_Ref:[1113],on_ReferencedEvent:[1122],on_Release:[1130],on_ReleaseAsset:[1131],on_RemovedFromMergeQueueEvent:[1164],on_RemovedFromProjectEvent:[1165],on_RemovedFromProjectV2Event:[1166],on_RenamedTitleEvent:[1167],on_ReopenedEvent:[1175],on_RepoAccessAuditEntry:[1180],on_RepoAddMemberAuditEntry:[1182],on_RepoAddTopicAuditEntry:[1184],on_RepoArchivedAuditEntry:[1185],on_RepoChangeMergeSettingAuditEntry:[1187],on_RepoConfigDisableAnonymousGitAccessAuditEntry:[1189],on_RepoConfigDisableCollaboratorsOnlyAuditEntry:[1190],on_RepoConfigDisableContributorsOnlyAuditEntry:[1191],on_RepoConfigDisableSockpuppetDisallowedAuditEntry:[1192],on_RepoConfigEnableAnonymousGitAccessAuditEntry:[1193],on_RepoConfigEnableCollaboratorsOnlyAuditEntry:[1194],on_RepoConfigEnableContributorsOnlyAuditEntry:[1195],on_RepoConfigEnableSockpuppetDisallowedAuditEntry:[1196],on_RepoConfigLockAnonymousGitAccessAuditEntry:[1197],on_RepoConfigUnlockAnonymousGitAccessAuditEntry:[1198],on_RepoCreateAuditEntry:[1199],on_RepoDestroyAuditEntry:[1201],on_RepoRemoveMemberAuditEntry:[1203],on_RepoRemoveTopicAuditEntry:[1205],on_Repository:[1207],on_RepositoryCustomProperty:[1217],on_RepositoryInvitation:[1234],on_RepositoryMigration:[1240],on_RepositoryRule:[1257],on_RepositoryRuleset:[1266],on_RepositoryRulesetBypassActor:[1267],on_RepositoryTopic:[1276],on_RepositoryVisibilityChangeDisableAuditEntry:[1280],on_RepositoryVisibilityChangeEnableAuditEntry:[1281],on_RepositoryVulnerabilityAlert:[1282],on_ReviewDismissalAllowance:[1316],on_ReviewDismissedEvent:[1320],on_ReviewRequest:[1321],on_ReviewRequestRemovedEvent:[1324],on_ReviewRequestedEvent:[1325],on_SavedReply:[1338],on_SecurityAdvisory:[1347],on_SponsorsActivity:[1399],on_SponsorsListing:[1409],on_SponsorsListingFeaturedItem:[1411],on_SponsorsTier:[1413],on_Sponsorship:[1419],on_SponsorshipNewsletter:[1422],on_Status:[1445],on_StatusCheckRollup:[1448],on_StatusContext:[1452],on_SubIssueAddedEvent:[1457],on_SubIssueRemovedEvent:[1458],on_SubscribedEvent:[1467],on_Team:[1476],on_TeamAddMemberAuditEntry:[1477],on_TeamAddRepositoryAuditEntry:[1478],on_TeamChangeParentTeamAuditEntry:[1480],on_TeamRemoveMemberAuditEntry:[1493],on_TeamRemoveRepositoryAuditEntry:[1494],on_Topic:[1506],on_TransferredEvent:[1514],on_Tree:[1515],on_UnassignedEvent:[1525],on_UnlabeledEvent:[1532],on_UnlockedEvent:[1541],on_UnmarkedAsDuplicateEvent:[1550],on_UnpinnedEvent:[1557],on_UnsubscribedEvent:[1560],on_User:[1697],on_UserBlockedEvent:[1699],on_UserContentEdit:[1701],on_UserList:[1706],on_UserNamespaceRepository:[1713],on_UserStatus:[1716],on_VerifiableDomain:[1722],on_Workflow:[1732],on_WorkflowRun:[1735],on_WorkflowRunFile:[1738],on_Node:[788],on_ProjectV2Event:[958],on_GitObject:[587],on_Actor:[12],on_UniformResourceLocatable:[1530],on_RequirableByPullRequest:[1298],on_Subscribable:[1465],on_Comment:[187],on_Deletable:[334],on_Minimizable:[779],on_Reactable:[1099],on_RepositoryNode:[1248],on_Updatable:[1561],on_UpdatableComment:[1562],on_Closable:[172],on_Labelable:[695],on_Lockable:[717],on_Votable:[1731],on_Starrable:[1438],on_Assignable:[76],on_ProjectV2Owner:[1005],on_SubscribableThread:[1466],on_Pinnable:[904],on_IssueFieldCommon:[640],on_IssueFieldValueCommon:[658],on_AuditEntry:[81],on_EnterpriseAuditEntryData:[481],on_OrganizationAuditEntryData:[844],on_OauthApplicationAuditEntryData:[792],on_MemberStatusable:[742],on_PackageOwner:[882],on_ProfileOwner:[928],on_ProjectOwner:[946],on_ProjectV2Recent:[1007],on_RepositoryDiscussionAuthor:[1224],on_RepositoryDiscussionCommentAuthor:[1225],on_RepositoryOwner:[1251],on_Sponsorable:[1393],on_RepositoryAuditEntryData:[1209],on_ProjectV2FieldCommon:[960],on_ProjectV2ItemFieldValueCommon:[988],on_TopicAuditEntryData:[1507],on_RepositoryInfo:[1229],on_Migration:[767],on_TeamReviewRequestable:[1500],on_TeamAuditEntryData:[1479],on_Agentic:[63],__typename:[1455]}}}),createClient=function(e){return s({url:`https://api.github.com/graphql`,...e,queryRoot:c.Query,mutationRoot:c.Mutation,subscriptionRoot:c.Subscription})};var GitHubFacade=class{token;githubClasses;constructor(e){this.token=e,this.githubClasses=readyGitHubClasses(e)}get graphql(){return createClient({headers:{authorization:`Bearer ${this.token}`}})}async getMe(){return await new this.githubClasses.GitHubUser().get()}async getMyOrganizations(){let{GitHubUserOrganizations:e,GitHubOrganizationRepositories:t}=this.githubClasses;return(await new e().getList()).map(e=>({...e,async getRepositories(){return await new t(e.login).getList()}}))}async getMyRepositories(){let{GitHubUserRepositories:e,GitHubRepositoryIssues:t}=this.githubClasses;return(await new e().getList()).map(e=>({...e,async getIssues(){return await new t(e.owner.login,e.name).getList()},async postIssue(...n){return await new t(e.owner.login,e.name).post(...n)}}))}async getMyIssues(){let{GitHubMyIssues:e}=this.githubClasses;return await new e().getList()}repo(e,t){let{GitHubRepository:n}=this.githubClasses;return new n(e,t)}async queryGraphQL(e,t){return await new this.githubClasses.GitHubGraphQL().doQuery({query:e,variables:t})}};async function executeScriptFile(e,n){await Function(`{github}`,`return new Promise(async (resolve) => {
|
|
2
3
|
${await t(e,{encoding:`utf8`})}
|
|
3
4
|
resolve();
|
|
4
5
|
});`)({github:n})}async function main(){let t=process.env.GITHUB_TOKEN;r(t!=null&&t!==``,`GITHUB_TOKEN environment variable is not set`);let i=new GitHubFacade(t),[a,o,s]=process.argv,c=n.resolve(process.cwd(),`/scripts/${s}`);if(s!=null){await executeScriptFile(c,i);return}let l=e({prompt:`github> `});l.context.github=i}main().catch(console.error);export{};
|