From 58bff5a034257218506d46a8be54fdde7789b304 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 28 Jun 2021 14:03:49 +0200 Subject: [PATCH] Update GraphQL schema file Closes #737 Signed-off-by: Thomas Citharel --- schema.graphql | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/schema.graphql b/schema.graphql index 7aba32332..6351191e1 100644 --- a/schema.graphql +++ b/schema.graphql @@ -114,6 +114,9 @@ enum NotificationPendingEnum { "One day. Notifications will be sent at most each day" ONE_DAY + + "One Week. Notifications will be sent at most each week" + ONE_WEEK } "The possible values for a participant role" @@ -1229,6 +1232,9 @@ type RootMutationType { "When does the user receives a notification about a new pending membership in one of the group they're admin for" notificationPendingMembership: NotificationPendingEnum + "When does the user receives a notification about new activity" + groupNotifications: NotificationPendingEnum + "A geohash of the user's preferred location, where they want to see events" location: LocationInput ): UserSettings @@ -3403,6 +3409,9 @@ type UserSettings { "When does the user receives a notification about a new pending membership in one of the group they're admin for" notificationPendingMembership: NotificationPendingEnum + "When does the user receives a notification about new activity" + groupNotifications: NotificationPendingEnum + "The user's preferred location, where they want to be suggested events" location: Location }