Update GraphQL schema file

Closes #737

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-06-28 14:03:49 +02:00
parent ac12d96688
commit 58bff5a034
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 9 additions and 0 deletions

View File

@ -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
}