updateSoftwareSettings
Update software settings for an application environment.
updateSoftwareSettings(
input: AppEnvironmentSoftwareSettingsInput
): AppEnvironmentSoftwareSettings
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentSoftwareSettingsInput) {
updateSoftwareSettings(input: $input) {
muplugins {
name
pinned
slug
}
nodejs {
name
pinned
slug
}
php {
name
pinned
slug
}
wordpress {
name
pinned
slug
}
}
}
{
"input": {
"appId": 42,
"environmentId": 42,
"softwareName": "softwareName",
"softwareVersion": "softwareVersion"
}
}
{
"data": {
"updateSoftwareSettings": {
"muplugins": {
"name": "A name",
"pinned": true,
"slug": "slug"
},
"nodejs": {
"name": "A name",
"pinned": true,
"slug": "slug"
},
"php": {
"name": "A name",
"pinned": true,
"slug": "slug"
},
"wordpress": {
"name": "A name",
"pinned": true,
"slug": "slug"
}
}
}
}
Arguments
updateSoftwareSettings.input ● AppEnvironmentSoftwareSettingsInput input common
The application, environment, and software version to update.
Type
AppEnvironmentSoftwareSettings object common
Available software settings for an application environment.