This repository was archived by the owner on Oct 26, 2025. It is now read-only.
Description Before:
export interface TodayPageResolver {
( args : { day ?: string , applyAccessControls ?: boolean , forUserID ?: string , partnerID ?: string , partnerSlug ?: string } , obj : { root : Query , context : RedwoodGraphQLContext , info : GraphQLResolveInfo } ) : Promise < RTTodayPage | null > ;
After
interface TodayPageResolverArgs {
day : string | undefined ;
applyAccessControls : boolean | undefined ;
forUserID : string | undefined ;
partnerID : string | undefined ;
partnerSlug : string | undefined ;
anonPuzzlesOnly : boolean | undefined ;
}
/*SDL: todayPage(day: String, applyAccessControls: Boolean, forUserID: String, partnerID: String, partnerSlug: String, anonPuzzlesOnly: Boolean): TodayPage*/
export interface TodayPageResolver {
( args : TodayPageResolverArgs , obj : { root : Query , context : RedwoodGraphQLContext , info : GraphQLResolveInfo } ) : Promise < RTTodayPage | null > ;
should be day?: string
Reactions are currently unavailable
Before:
After
should be
day?: string