Fix missing call for update metadata mutation (#1207)
* Fix missing call for update metadata mutation * Update changelog
This commit is contained in:
parent
df7ac2dd45
commit
da678d856a
3 changed files with 3 additions and 0 deletions
|
@ -59,6 +59,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
|||
- Add generic filter validation - #1187 by @jwm0
|
||||
- Fix duplicated labels in column picker - #1197 by @orzechdev
|
||||
- Fix forbidden null sending as attribute value - #1201 by @orzechdev
|
||||
- Fix missing call for update metadata mutation - #1207 by @orzechdev
|
||||
|
||||
# 2.11.1
|
||||
|
||||
|
|
|
@ -669,6 +669,7 @@ export const ProductVariantChannelListingUpdateMutation = gql`
|
|||
...ChannelListingProductVariantFragment
|
||||
}
|
||||
product {
|
||||
id
|
||||
channelListings {
|
||||
...ChannelListingProductFragment
|
||||
}
|
||||
|
|
|
@ -88,6 +88,7 @@ export interface ProductVariantChannelListingUpdate_productVariantChannelListing
|
|||
|
||||
export interface ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product {
|
||||
__typename: "Product";
|
||||
id: string;
|
||||
channelListings: ProductVariantChannelListingUpdate_productVariantChannelListingUpdate_variant_product_channelListings[] | null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue