OBJECT

ProjectSettings

Project Settings type

link GraphQL Schema definition

1type ProjectSettings {
2
3# Project id.
4projectId: String
5
6# Test Environments.
7testEnvironments: [String]
8
9# Test Coverage Settings.
10testCoverageSettings: ProjectSettingsTestCoverage
11
12# Defect Issue Types.
13defectIssueTypes: [String]
14
15# Test Type Settings.
16testTypeSettings: ProjectSettingsTestType
17
18# Test Step Settings.
19testStepSettings: ProjectSettingsTestStepSettings
20
21# Test Run Custom Fields Settings.
22testRunCustomFieldSettings: ProjectSettingsTestRunCustomFields
23
24}