OBJECT

Collection

link GraphQL Schema definition

1type Collection {
2id: Int!
3
4status: Status!
5
6name: String!
7
8uri: String!
9
10# Required permission: Collection.totalProducts:read
11totalProducts: Int!
12
13# Required permission: Product:read
14#
15# Limit must be in range 1 - 200
16#
17# Arguments
18# where: (self-explanatory)
19# sort: (self-explanatory)
20# limit: (self-explanatory)
21# page: (self-explanatory)
22products(where: ProductFilter, sort: [ProductSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Product!]!
23
24}