OBJECT
Wishlist
link GraphQL Schema definition
1 type Wishlist { 2 : Int! 3 4 : String! 5 6 : Boolean! 7 8 # Arguments 9 # format: ISO-8601 10 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 11 12 # Required permission: Store:read 13 # 14 # Store restrictions apply. 15 : 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) 25 (: [WishlistItemSort!] = [id_DESC], : Int = 10, : Int = 1): [WishlistItem!]! 26 27 }