13 lines
246 B
GraphQL
13 lines
246 B
GraphQL
input UpdateSystemSettingInput {
|
|
urn: ID!
|
|
hashValue: String!
|
|
}
|
|
|
|
type UpdateSystemSettingOutput {
|
|
error: UpdateSystemSettingOutputError
|
|
}
|
|
|
|
type Mutation {
|
|
updateSystemSetting(input: UpdateSystemSettingInput!): UpdateSystemSettingOutput!
|
|
}
|