@@ -88,13 +88,13 @@ export type AssignRoleInput = {
8888export type Branding = {
8989 __typename ?: 'Branding' ;
9090 colors : Colors ;
91- logo : Scalars [ 'String' ] [ 'output' ] ;
91+ logo ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
9292 rounding : Scalars [ 'Int' ] [ 'output' ] ;
9393} ;
9494
9595export type BrandingInput = {
9696 colors : ColorsInput ;
97- logo : Scalars [ 'String' ] [ 'input' ] ;
97+ logo ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
9898 rounding : Scalars [ 'Int' ] [ 'input' ] ;
9999} ;
100100
@@ -434,7 +434,6 @@ export type Mutation = {
434434 bulkCompleteChallenges : Array < Challenge > ;
435435 bulkCreateChallenges : Array < Challenge > ;
436436 bulkPublishChallenges : Array < Challenge > ;
437- cloneProject : Project ;
438437 completeChallenge : Challenge ;
439438 createChallenge : Challenge ;
440439 createEvent : Event ;
@@ -606,12 +605,6 @@ export type MutationBulkPublishChallengesArgs = {
606605} ;
607606
608607
609- export type MutationCloneProjectArgs = {
610- id : Scalars [ 'ID' ] [ 'input' ] ;
611- newName : Scalars [ 'String' ] [ 'input' ] ;
612- } ;
613-
614-
615608export type MutationCompleteChallengeArgs = {
616609 challengeId : Scalars [ 'ID' ] [ 'input' ] ;
617610 completedAt ?: InputMaybe < Scalars [ 'DateTime' ] [ 'input' ] > ;
@@ -1420,19 +1413,19 @@ export type AdminSidebarQuery = { __typename?: 'Query', projects: { __typename?:
14201413export type CurrentProjectQueryVariables = Exact < { [ key : string ] : never ; } > ;
14211414
14221415
1423- export type CurrentProjectQuery = { __typename ?: 'Query' , myCurrentProject : { __typename ?: 'Project' , branding : { __typename ?: 'Branding' , logo : string , rounding : number , colors : { __typename ?: 'Colors' , primary : string } } } } ;
1416+ export type CurrentProjectQuery = { __typename ?: 'Query' , myCurrentProject : { __typename ?: 'Project' , branding : { __typename ?: 'Branding' , logo ? : string | null , rounding : number , colors : { __typename ?: 'Colors' , primary : string } } } } ;
14241417
14251418export type AdminHomePageQueryVariables = Exact < { [ key : string ] : never ; } > ;
14261419
14271420
1428- export type AdminHomePageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , id : string , name : string } , projects : { __typename ?: 'ProjectConnection' , edges : Array < { __typename ?: 'ProjectEdge' , node : { __typename ?: 'Project' , id : string , name : string , description : string , endDate : any , startDate : any , branding : { __typename ?: 'Branding' , logo : string , rounding : number , colors : { __typename ?: 'Colors' , primary : string , secondary : string , tertiary : string } } } } > } } ;
1421+ export type AdminHomePageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , id : string , name : string } , projects : { __typename ?: 'ProjectConnection' , edges : Array < { __typename ?: 'ProjectEdge' , node : { __typename ?: 'Project' , id : string , name : string , description : string , endDate : any , startDate : any , branding : { __typename ?: 'Branding' , logo ? : string | null , rounding : number , colors : { __typename ?: 'Colors' , primary : string , secondary : string , tertiary : string } } } } > } } ;
14291422
14301423export type AdminProjectPageQueryVariables = Exact < {
14311424 projectId : Scalars [ 'ID' ] [ 'input' ] ;
14321425} > ;
14331426
14341427
1435- export type AdminProjectPageQuery = { __typename ?: 'Query' , project : { __typename ?: 'Project' , id : string , name : string , description : string , startDate : any , endDate : any , branding : { __typename ?: 'Branding' , logo : string , rounding : number , colors : { __typename ?: 'Colors' , primary : string } } } , achievements : { __typename ?: 'AchievementConnection' , edges : Array < { __typename ?: 'AchievementEdge' , node :
1428+ export type AdminProjectPageQuery = { __typename ?: 'Query' , project : { __typename ?: 'Project' , id : string , name : string , description : string , startDate : any , endDate : any , branding : { __typename ?: 'Branding' , logo ? : string | null , rounding : number , colors : { __typename ?: 'Colors' , primary : string } } } , achievements : { __typename ?: 'AchievementConnection' , edges : Array < { __typename ?: 'AchievementEdge' , node :
14361429 | { __typename ?: 'ListeningAchievement' , id : string , name : string }
14371430 | { __typename ?: 'ReadingAchievement' , id : string , name : string }
14381431 | { __typename ?: 'SimpleAchievement' , id : string , name : string }
@@ -1442,7 +1435,7 @@ export type AdminProjectPageQuery = { __typename?: 'Query', project: { __typenam
14421435export type AdminProjectsPageQueryVariables = Exact < { [ key : string ] : never ; } > ;
14431436
14441437
1445- export type AdminProjectsPageQuery = { __typename ?: 'Query' , projects : { __typename ?: 'ProjectConnection' , edges : Array < { __typename ?: 'ProjectEdge' , node : { __typename ?: 'Project' , id : string , name : string , description : string , endDate : any , startDate : any , branding : { __typename ?: 'Branding' , logo : string , colors : { __typename ?: 'Colors' , primary : string } } } } > } } ;
1438+ export type AdminProjectsPageQuery = { __typename ?: 'Query' , projects : { __typename ?: 'ProjectConnection' , edges : Array < { __typename ?: 'ProjectEdge' , node : { __typename ?: 'Project' , id : string , name : string , description : string , endDate : any , startDate : any , branding : { __typename ?: 'Branding' , logo ? : string | null , colors : { __typename ?: 'Colors' , primary : string } } } } > } } ;
14461439
14471440export type CreateProjectMutationVariables = Exact < {
14481441 input : CreateProjectInput ;
@@ -1661,7 +1654,7 @@ export function useAdminProjectPageQuery(options?: Omit<Urql.UseQueryArgs<never,
16611654} ;
16621655export const AdminProjectsPageDocument = gql `
16631656 query AdminProjectsPage {
1664- projects {
1657+ projects(first: 100) {
16651658 edges {
16661659 node {
16671660 id
0 commit comments