OBJECT

Brand

link GraphQL Schema definition

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