SetPlatformExtensionConfigurationValue
Signature
mutation {
SetPlatformExtensionConfigurationValue(extension: ..., name: ..., value: ...)
}
Retourne : PlatformExtensionService!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
extension | PlatformExtension! | ✓ | — | — |
name | String! | ✓ | — | — |
value | String! | ✓ | — | — |
Exemple
mutation {
SetPlatformExtensionConfigurationValue(
extension: $extension
name: $name
value: $value
) {
id {}
label
state {}
variables {}
}
}