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# A flag that indicates whether the viewer is publicly accessible across all
29# organizations.
30isPublic: Boolean
31
32# Arguments
33# offset: Provide an offset to skip to a certain element in the
34# result, for paging.
35# limit: Specify maximum number of results to retrieve in this
36# result. Page size.
37# orderBy: Set order information on the query. Multiple fields
38# are supported.
39applicationViewerBuilds(
40status: ApplicationViewerBuildStatus,
41offset: Int,
42limit: Int,
43orderBy: ApplicationViewerBuildOrderBy
44): ApplicationViewerBuildList
45
46}