@@ -75,17 +75,17 @@ export type QueryUserArgs = {
7575
7676export type Rank = {
7777 __typename ?: 'Rank' ;
78- _id : Scalars [ 'String' ] [ 'output' ] ;
79- contributedStars : Scalars [ 'Int' ] [ 'output' ] ;
78+ contributedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8079 contributedStarsD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8180 contributedStarsM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8281 contributedStarsY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
83- followersCount : Scalars [ 'Int' ] [ 'output' ] ;
82+ followersCount ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8483 followersCountD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8584 followersCountM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8685 followersCountY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8786 githubId : Scalars [ 'ID' ] [ 'output' ] ;
88- ownedStars : Scalars [ 'Int' ] [ 'output' ] ;
87+ isProvisional ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
88+ ownedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
8989 ownedStarsD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
9090 ownedStarsM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
9191 ownedStarsY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
@@ -100,17 +100,17 @@ export enum RankOrder {
100100
101101export type RankWithoutUser = {
102102 __typename ?: 'RankWithoutUser' ;
103- _id : Scalars [ 'String' ] [ 'output' ] ;
104- contributedStars : Scalars [ 'Int' ] [ 'output' ] ;
103+ contributedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
105104 contributedStarsD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
106105 contributedStarsM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
107106 contributedStarsY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
108- followersCount : Scalars [ 'Int' ] [ 'output' ] ;
107+ followersCount ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
109108 followersCountD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
110109 followersCountM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
111110 followersCountY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
112111 githubId : Scalars [ 'ID' ] [ 'output' ] ;
113- ownedStars : Scalars [ 'Int' ] [ 'output' ] ;
112+ isProvisional ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
113+ ownedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
114114 ownedStarsD ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
115115 ownedStarsM ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
116116 ownedStarsY ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
@@ -167,7 +167,6 @@ export type Timeline = {
167167
168168export type User = {
169169 __typename ?: 'User' ;
170- _id : Scalars [ 'String' ] [ 'output' ] ;
171170 avatarUrl ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
172171 company ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
173172 contributedRepoCount ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
@@ -182,7 +181,7 @@ export type User = {
182181 followingCount ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
183182 githubCreatedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
184183 githubFetchedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
185- githubId : Scalars [ 'ID' ] [ 'output' ] ;
184+ githubId ?: Maybe < Scalars [ 'ID' ] [ 'output' ] > ;
186185 githubServiceFetchedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
187186 githubUpdatedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
188187 isHireable ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
@@ -215,15 +214,15 @@ export type UserBasic = {
215214 avatarUrl ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
216215 contributedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
217216 followersCount ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
218- githubId : Scalars [ 'String ' ] [ 'output' ] ;
217+ githubId : Scalars [ 'ID ' ] [ 'output' ] ;
219218 location ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
220219 login : Scalars [ 'String' ] [ 'output' ] ;
221220 ownedStars ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
222221} ;
223222
224223export enum UserFetchingStatus {
225- Active = 'ACTIVE ' ,
226- Completed = 'COMPLETED '
224+ Completed = 'COMPLETED ' ,
225+ Fetching = 'FETCHING '
227226}
228227
229228export type IdByLoginQueryVariables = Exact < {
@@ -239,7 +238,7 @@ export type RankingsQueryVariables = Exact<{
239238} > ;
240239
241240
242- export type RankingsQuery = { __typename ?: 'Query' , rankings : Array < { __typename ?: 'Rank' , githubId : string , contributedStars : number , contributedStarsM ?: number | null , followersCount : number , followersCountM ?: number | null , ownedStars : number , ownedStarsM ?: number | null , user ?: { __typename ?: 'UserBasic' , login : string , avatarUrl ?: string | null , ownedStars ?: number | null , contributedStars ?: number | null , followersCount ?: number | null , location ?: string | null } | null } > } ;
241+ export type RankingsQuery = { __typename ?: 'Query' , rankings : Array < { __typename ?: 'Rank' , githubId : string , contributedStars ? : number | null , contributedStarsM ?: number | null , followersCount ? : number | null , followersCountM ?: number | null , ownedStars ? : number | null , ownedStarsM ?: number | null , user ?: { __typename ?: 'UserBasic' , login : string , avatarUrl ?: string | null , ownedStars ?: number | null , contributedStars ?: number | null , followersCount ?: number | null , location ?: string | null } | null } > } ;
243242
244243export type RepositoryFieldsFragment = { __typename ?: 'Repository' , githubId : string , createdAt ?: any | null , pushedAt ?: any | null , url : string , forkCount : number , isArchived : boolean , name ?: string | null , releasesCount ?: number | null , stargazerCount : number , languages ?: { __typename ?: 'RepositoryLanguagesEntity' , totalCount : number , totalSize : number , nodes : Array < { __typename ?: 'LanguageEntity' , id : string , size : number } > } | null } ;
245244
@@ -248,7 +247,7 @@ export type UserQueryVariables = Exact<{
248247} > ;
249248
250249
251- export type UserQuery = { __typename ?: 'Query' , user ?: { __typename ?: 'User' , githubId : string , githubFetchedAt ?: any | null , githubServiceFetchedAt ?: any | null , login : string , avatarUrl ?: string | null , location ?: string | null , followersCount ?: number | null , ownedStars ?: number | null , contributedStars ?: number | null , company ?: string | null , email ?: string | null , followingCount ?: number | null , githubCreatedAt ?: any | null , isHireable ?: boolean | null , name ?: string | null , twitterUsername ?: string | null , websiteUrl ?: string | null , firstSeenAt ?: any | null , repositoriesCount ?: number | null , contributedRepoCount ?: number | null , socialAccounts ?: { __typename ?: 'SocialAccount' , totalCount : number , nodes ?: Array < { __typename ?: 'SocialAccountNodeEntity' , displayName ?: string | null , provider : string , url : string } > | null } | null , organizations ?: Array < { __typename ?: 'Organization' , githubId : string , login : string , avatarUrl ?: string | null , name ?: string | null } > | null , contributions ?: Array < { __typename ?: 'Contribution' , year : number , prsCount ?: number | null , mergedPrsCount ?: number | null , linesAdded ?: number | null , linesRemoved ?: number | null , repository ?: { __typename ?: 'Repository' , githubId : string , createdAt ?: any | null , pushedAt ?: any | null , url : string , forkCount : number , isArchived : boolean , name ?: string | null , releasesCount ?: number | null , stargazerCount : number , languages ?: { __typename ?: 'RepositoryLanguagesEntity' , totalCount : number , totalSize : number , nodes : Array < { __typename ?: 'LanguageEntity' , id : string , size : number } > } | null } | null } > | null , repositories ?: Array < { __typename ?: 'Repository' , githubId : string , createdAt ?: any | null , pushedAt ?: any | null , url : string , forkCount : number , isArchived : boolean , name ?: string | null , releasesCount ?: number | null , stargazerCount : number , languages ?: { __typename ?: 'RepositoryLanguagesEntity' , totalCount : number , totalSize : number , nodes : Array < { __typename ?: 'LanguageEntity' , id : string , size : number } > } | null } > | null , timeline ?: Array < { __typename ?: 'Timeline' , changes : any , createdAt : any } > | null , rank ?: { __typename ?: 'RankWithoutUser' , ownedStars : number , ownedStarsM ?: number | null , ownedStarsY ?: number | null , contributedStars : number , contributedStarsM ?: number | null , contributedStarsY ?: number | null , followersCount : number , followersCountM ?: number | null , followersCountY ?: number | null } | null } | null } ;
250+ export type UserQuery = { __typename ?: 'Query' , user ?: { __typename ?: 'User' , githubId ?: string | null , githubFetchedAt ?: any | null , githubServiceFetchedAt ?: any | null , login : string , avatarUrl ?: string | null , location ?: string | null , followersCount ?: number | null , ownedStars ?: number | null , contributedStars ?: number | null , company ?: string | null , email ?: string | null , followingCount ?: number | null , githubCreatedAt ?: any | null , isHireable ?: boolean | null , name ?: string | null , twitterUsername ?: string | null , websiteUrl ?: string | null , firstSeenAt ?: any | null , repositoriesCount ?: number | null , contributedRepoCount ?: number | null , socialAccounts ?: { __typename ?: 'SocialAccount' , totalCount : number , nodes ?: Array < { __typename ?: 'SocialAccountNodeEntity' , displayName ?: string | null , provider : string , url : string } > | null } | null , organizations ?: Array < { __typename ?: 'Organization' , githubId : string , login : string , avatarUrl ?: string | null , name ?: string | null } > | null , contributions ?: Array < { __typename ?: 'Contribution' , year : number , prsCount ?: number | null , mergedPrsCount ?: number | null , linesAdded ?: number | null , linesRemoved ?: number | null , repository ?: { __typename ?: 'Repository' , githubId : string , createdAt ?: any | null , pushedAt ?: any | null , url : string , forkCount : number , isArchived : boolean , name ?: string | null , releasesCount ?: number | null , stargazerCount : number , languages ?: { __typename ?: 'RepositoryLanguagesEntity' , totalCount : number , totalSize : number , nodes : Array < { __typename ?: 'LanguageEntity' , id : string , size : number } > } | null } | null } > | null , repositories ?: Array < { __typename ?: 'Repository' , githubId : string , createdAt ?: any | null , pushedAt ?: any | null , url : string , forkCount : number , isArchived : boolean , name ?: string | null , releasesCount ?: number | null , stargazerCount : number , languages ?: { __typename ?: 'RepositoryLanguagesEntity' , totalCount : number , totalSize : number , nodes : Array < { __typename ?: 'LanguageEntity' , id : string , size : number } > } | null } > | null , timeline ?: Array < { __typename ?: 'Timeline' , changes : any , createdAt : any } > | null , rank ?: { __typename ?: 'RankWithoutUser' , ownedStars ?: number | null , ownedStarsM ?: number | null , ownedStarsY ?: number | null , contributedStars ?: number | null , contributedStarsM ?: number | null , contributedStarsY ?: number | null , followersCount ?: number | null , followersCountM ?: number | null , followersCountY ?: number | null } | null } | null } ;
252251
253252export type ProfilesForSitemapQueryVariables = Exact < { [ key : string ] : never ; } > ;
254253
@@ -272,7 +271,7 @@ export type RankByLoginQueryVariables = Exact<{
272271} > ;
273272
274273
275- export type RankByLoginQuery = { __typename ?: 'Query' , rankByLogin ?: { __typename ?: 'Rank' , githubId : string , contributedStars : number , contributedStarsM ?: number | null , followersCount : number , followersCountM ?: number | null , ownedStars : number , ownedStarsM ?: number | null , user ?: { __typename ?: 'UserBasic' , login : string , avatarUrl ?: string | null , ownedStars ?: number | null , contributedStars ?: number | null , followersCount ?: number | null , location ?: string | null } | null } | null } ;
274+ export type RankByLoginQuery = { __typename ?: 'Query' , rankByLogin ?: { __typename ?: 'Rank' , githubId : string , contributedStars ? : number | null , contributedStarsM ?: number | null , followersCount ? : number | null , followersCountM ?: number | null , ownedStars ? : number | null , ownedStarsM ?: number | null , user ?: { __typename ?: 'UserBasic' , login : string , avatarUrl ?: string | null , ownedStars ?: number | null , contributedStars ?: number | null , followersCount ?: number | null , location ?: string | null } | null } | null } ;
276275
277276export const RepositoryFieldsFragmentDoc = { "kind" :"Document" , "definitions" :[ { "kind" :"FragmentDefinition" , "name" :{ "kind" :"Name" , "value" :"RepositoryFields" } , "typeCondition" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"Repository" } } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"githubId" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"createdAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"pushedAt" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"url" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"forkCount" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"isArchived" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"name" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"releasesCount" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"stargazerCount" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"languages" } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"totalCount" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"totalSize" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"nodes" } , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"id" } } , { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"size" } } ] } } ] } } ] } } ] } as unknown as DocumentNode < RepositoryFieldsFragment , unknown > ;
278277export const IdByLoginDocument = { "kind" :"Document" , "definitions" :[ { "kind" :"OperationDefinition" , "operation" :"query" , "name" :{ "kind" :"Name" , "value" :"IdByLogin" } , "variableDefinitions" :[ { "kind" :"VariableDefinition" , "variable" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"login" } } , "type" :{ "kind" :"NonNullType" , "type" :{ "kind" :"NamedType" , "name" :{ "kind" :"Name" , "value" :"String" } } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"rankByLogin" } , "arguments" :[ { "kind" :"Argument" , "name" :{ "kind" :"Name" , "value" :"login" } , "value" :{ "kind" :"Variable" , "name" :{ "kind" :"Name" , "value" :"login" } } } ] , "selectionSet" :{ "kind" :"SelectionSet" , "selections" :[ { "kind" :"Field" , "name" :{ "kind" :"Name" , "value" :"githubId" } } ] } } ] } } ] } as unknown as DocumentNode < IdByLoginQuery , IdByLoginQueryVariables > ;
0 commit comments