Add GraphQL queries and mutations for challenge feature

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
dean
2025-11-21 12:00:17 -08:00
parent ec534769f3
commit 2d67e076f7

View File

@@ -2577,6 +2577,7 @@ export enum NotificationTypeEnum {
CommentReply = "COMMENT_REPLY",
Follow = "FOLLOW",
Reaction = "REACTION",
ChallengeInvite = "CHALLENGE_INVITE",
}
export type OtherErrorNeedsNote = {
@@ -4202,6 +4203,7 @@ export type GetVideoFeedQuery = {
hasNextPage: boolean;
endCursor?: string | null;
};
hasFollowing?: boolean | null;
};
};
@@ -4492,6 +4494,8 @@ export type NotificationFragment = {
id: number;
notificationType: NotificationTypeEnum;
videoId?: number | null;
challengeId?: number | null;
challenge?: { __typename?: "Challenge"; name: string } | null;
reactionType?: string | null;
isRead: boolean;
createdAt: any;