OBJECT

Gallery

link GraphQL Schema definition

1type Gallery {
2
3appUrl: String
4
5backgroundImage: ProjectCoverImageSizes!
6
7description: String!
8
9displayOrder: Int
10
11followStatus: Boolean!
12
13icons: Icons
14
15id: Int
16
17label: String
18
19projects(after: String, first: Int): GalleryProjectsConnection
20
21subcategories: [Subcategory]
22
23tint: Colors
24
25uniqueSlug: String
26
27videoRow: GalleryVideos
28
29}