ProductChannelListingAddInput Input Type
No description
input ProductChannelListingAddInput {
channelId: ID!
isPublished: Boolean
publicationDate: Date @deprecated
publishedAt: DateTime
visibleInListings: Boolean
isAvailableForPurchase: Boolean
availableForPurchaseDate: Date @deprecated
availableForPurchaseAt: DateTime
addVariants: [ID!]
removeVariants: [ID!]
}
Fields
ProductChannelListingAddInput.channelId ● ID! non-null scalar miscellaneous
ID of a channel.
ProductChannelListingAddInput.isPublished ● Boolean scalar miscellaneous
Determines if object is visible to customers.
ProductChannelListingAddInput.publicationDate ● Date deprecated scalar miscellaneous
Use publishedAt field instead.
Publication date. ISO 8601 standard.
ProductChannelListingAddInput.publishedAt ● DateTime scalar miscellaneous
Publication date time. ISO 8601 standard.
ProductChannelListingAddInput.visibleInListings ● Boolean scalar miscellaneous
Determines if product is visible in product listings (doesn't apply to product collections).
ProductChannelListingAddInput.isAvailableForPurchase ● Boolean scalar miscellaneous
Determines if product should be available for purchase in this channel. This does not guarantee the availability of stock. When set to False, this product is still visible to customers, but it cannot be purchased.
ProductChannelListingAddInput.availableForPurchaseDate ● Date deprecated scalar miscellaneous
Use availableForPurchaseAt field instead.
A start date from which a product will be available for purchase. When not set and isAvailable is set to True, the current day is assumed.
ProductChannelListingAddInput.availableForPurchaseAt ● DateTime scalar miscellaneous
A start date time from which a product will be available for purchase. When not set and isAvailable is set to True, the current day is assumed.
ProductChannelListingAddInput.addVariants ● [ID!] list scalar miscellaneous
List of variants to which the channel should be assigned.
ProductChannelListingAddInput.removeVariants ● [ID!] list scalar miscellaneous
List of variants from which the channel should be unassigned.