From 2938a78b755a8fa3de6c1101adcfbc779c5a9d11 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 f408532..0d46bdd 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 e4a0189..b575413 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -743,6 +743,7 @@ enum NotificationTypeEnum { COMMENT COMMENT_REPLY REACTION + FOLLOW } input NotificationFilters {