INPUT_OBJECT

UpdateUserSetting

link GraphQL Schema definition

1input UpdateUserSetting {
4
2# Reset is true if we want to remove this setting
3reset: Boolean
8
5# Specify the userId (optional).
6# If it's not specified, default is current user
7userId: ID
11
9# Specify the applicationId (optional)
10application: ID
14
12# Specify the key of user setting
13key: String!
17
15# Specify value of user setting (It's required when "reset" is false)
16value: String
18}