The following mutation toggles automatic threshold on a test suite: ```graphql mutation ToggleTestSuiteAutomaticTreshold( $testSuiteId: ObjectID! $automaticThreshold: Boolean! $automaticThresholdEnabledForAll: Boolean ) { updateTestSuite( input: { testSuiteId: $testSuiteId automaticThreshold: $automaticThreshold automaticThresholdEnabledForAll: $automaticThresholdEnabledForAll } ) { testSuite { id automaticThreshold automaticThresholdEnabledForAll } } } ``` :::caution There are 3 options to set the automatic threshold: - `automaticThreshold` set to `false` and `automaticThresholdEnabledForAll` set to `false` - The `automaticThreshold` is disabled for all tests in that test suite, no matter the individual test `automaticThreshold`. - `automaticThreshold` set to `true` and `automaticThresholdEnabledForAll` set to `false` - The `automaticThreshold` is enabled for the test suite, but the `automaticThreshold` needs to be set on individual tests, in order to take effect. - `automaticThreshold` set to `true` and `automaticThresholdEnabledForAll` set to `true` - The `automaticThreshold` is enabled for all tests in that test suite, no matter the individual test `automaticThreshold`. :::