14 lines
295 B
GraphQL
14 lines
295 B
GraphQL
input UpdateSystemSettingInput {
|
|
urn: ID!
|
|
hashValueType: SystemSettingHashValueTypeEnum!
|
|
hashValue: String!
|
|
}
|
|
|
|
type UpdateSystemSettingOutput {
|
|
error: UpdateSystemSettingOutputError
|
|
}
|
|
|
|
type Mutation {
|
|
updateSystemSetting(input: UpdateSystemSettingInput!): UpdateSystemSettingOutput!
|
|
}
|