OBJECT

getProjectsSettings

link GraphQL Schema definition

1Query getProjectsSettings {
2
3# Returns the Project Settings of multiple Projects.
4#
5# Arguments
6# projectIdsOrKeys: Project Ids or Keys
7# limit: the maximum amount of Project Settings to be returned. The maximum is 100.
8# start: the index of the first item to return in the page of results (page offset).
9getProjectsSettings(projectIdsOrKeys: [String], limit: Int!, start: Int): ProjectsSettingsResults
10
11}

link Example

The Query below returns multiple Project Settings

{
    getProjectsSettings ( projectIdsOrKeys: ["10000", "10001"] ) {
        total
        start
        limit
        results {
            projectId,
            testEnvironments,
            testCoverageSettings {
                coverableIssueTypeIds
                epicIssuesRelation
                issueSubTasksRelation
                issueLinkTypeId
                issueLinkTypeDirection
            }
            defectIssueTypes
            testTypeSettings {
                testTypes {
                    id
                    name
                    kind
                }
                defaultTestTypeId
            }
        }
    }
}