updateInsightsOverviewStatus
Enable or disable the insights overview for an environment.
updateInsightsOverviewStatus(
input: AppEnvironmentInsightsOverviewUpdateStatusInput
): AppEnvironmentInsightsOverviewOperationResultPayload!
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentInsightsOverviewUpdateStatusInput) {
updateInsightsOverviewStatus(input: $input) {
enabled
message
success
}
}
{
"input": {
"enabled": true,
"environmentId": 42,
"id": 42
}
}
{
"data": {
"updateInsightsOverviewStatus": {
"enabled": true,
"message": "message",
"success": true
}
}
}
Arguments
updateInsightsOverviewStatus.input ● AppEnvironmentInsightsOverviewUpdateStatusInput input common
The insights overview status to apply.
Type
AppEnvironmentInsightsOverviewOperationResultPayload object common
The result of enabling or disabling the insights overview for an environment.