INPUT_OBJECT

WishlistItemAddInput

link GraphQL Schema definition

1input WishlistItemAddInput {
2
3# If no wishlist is provided then the default one will be used (created if need be)
4wishlist: WishlistInput
5
6# 'Customer' is used to create the default wishlist, in case if we couldn't find it
7#
8# Exactly one input field should be provided
9customer: CustomerInput!
10
11displayItem: DisplayItemInput!
12}

link Required by