OBJECT

Wishlist

link GraphQL Schema definition

1type Wishlist {
2id: Int!
3
4name: String!
5
6isDefault: Boolean!
7
8# Arguments
9# format: ISO-8601
10createdAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
11
12# Required permission: Store:read
13#
14# Store restrictions apply.
15store: Store!
16
17# Required permission: Wishlist:read
18#
19# Limit must be in range 1 - 200
20#
21# Arguments
22# sort: (self-explanatory)
23# limit: (self-explanatory)
24# page: (self-explanatory)
25items(sort: [WishlistItemSort!] = [id_DESC], limit: Int = 10, page: Int = 1): [WishlistItem!]!
26
27}