From 58ab272289ebc136321f0e2b16dc44cd66ef4a89 Mon Sep 17 00:00:00 2001 From: Loewy Date: Wed, 5 Nov 2025 15:27:44 -0800 Subject: [PATCH] add follow enum --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d32db42..8a19c9a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2486,6 +2486,7 @@ export type NotificationGql = { export enum NotificationTypeEnum { Comment = "COMMENT", CommentReply = "COMMENT_REPLY", + Follow = "FOLLOW", Reaction = "REACTION", } diff --git a/src/schema.gql b/src/schema.gql index d4c9c37..37866a7 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -744,6 +744,7 @@ enum NotificationTypeEnum { COMMENT COMMENT_REPLY REACTION + FOLLOW } input NotificationFilters {