OBJECT
ApplicationViewer
link GraphQL Schema definition
1 type ApplicationViewer { 2 3 : ID! 4 5 : ID! 6 7 : String 8 9 # The signed URL for the viewer icon; will fallback to raw icon if unable to sign. 10 : String 11 12 : String 13 14 : String 15 16 : String 17 18 : String 19 20 : DateTime 21 22 : DateTime 23 24 : BasicUserInfo 25 26 : BasicUserInfo 27 28 # A flag that indicates whether the viewer is publicly accessible across all 29 # organizations. 30 : 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. 39 ( 40 : ApplicationViewerBuildStatus, 41 : Int, 42 : Int, 43 : ApplicationViewerBuildOrderBy 44 ): ApplicationViewerBuildList 45 46 }