From 24dec8640b3430ecb156b2b0d1b54611b112e2ba Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sun, 6 Apr 2025 00:58:28 +0200 Subject: [PATCH] gql fix --- backend/src/schema/types/type/User.gql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/src/schema/types/type/User.gql b/backend/src/schema/types/type/User.gql index bd1bea27a..8d5e8bac0 100644 --- a/backend/src/schema/types/type/User.gql +++ b/backend/src/schema/types/type/User.gql @@ -25,8 +25,12 @@ input EmailNotificationSettingsInput { } type EmailNotificationSettings { - name: String type: String + settings: [EmailNotificationSettingsOption] +} + +type EmailNotificationSettingsOption { + name: String value: Boolean }