OBJECT

ApplicationViewer

link GraphQL Schema definition

1type ApplicationViewer {
2
3id: ID!
4
5ownerOrganizationId: ID!
6
7icon: String
8
9# The signed URL for the viewer icon; will fallback to raw icon if unable to sign.
10signedIconUrl: String
11
12name: String
13
14description: String
15
16viewerType: String
17
18mimeType: String
19
20createdDateTime: DateTime
21
22modifiedDateTime: DateTime
23
24createdBy: BasicUserInfo
25
26modifiedBy: BasicUserInfo
27
28# Arguments
29# offset: Provide an offset to skip to a certain element in the
30# result, for paging.
31# limit: Specify maximum number of results to retrieve in this
32# result. Page size.
33# orderBy: Set order information on the query. Multiple fields
34# are supported.
35applicationViewerBuilds(
36status: ApplicationViewerBuildStatus,
37offset: Int,
38limit: Int,
39orderBy: ApplicationViewerBuildOrderBy
40): ApplicationViewerBuildList
41
42}