OBJECT

ProjectsSettingsResults

link GraphQL Schema definition

1type ProjectsSettingsResults {
2
3# Total amount of projects.
4total: Int
5
6# The index of the first item to return in the page of results (page offset).
7start: Int
8
9# The maximum amount of Projects to be returned. The maximum is 100.
10limit: Int
11
12# Project Settings results.
13results: [ProjectSettings]
14
15# Warnings generated during the query.
16warnings: [String]
17
18}