Merge branch 'update-graphql-schema-file' into 'master'

Update GraphQL schema file

Closes #737

See merge request framasoft/mobilizon!964
This commit is contained in:
Thomas Citharel 2021-06-28 12:35:59 +00:00
commit 7c053142b8
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
}