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 }