From 2d67e076f7b51f228df285a1dcd9946cacefb4cd Mon Sep 17 00:00:00 2001 From: dean Date: Fri, 21 Nov 2025 12:00:17 -0800 Subject: [PATCH] Add GraphQL queries and mutations for challenge feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index e7dea5a..e1cb882 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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;