Fix missing call for update metadata mutation (#1207)

* Fix missing call for update metadata mutation

* Update changelog
This commit is contained in:
Dawid Tarasiuk 2021-07-05 11:59:08 +02:00 committed by GitHub
parent df7ac2dd45
commit da678d856a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -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

View file

@ -669,6 +669,7 @@ export const ProductVariantChannelListingUpdateMutation = gql`
...ChannelListingProductVariantFragment
}
product {
id
channelListings {
...ChannelListingProductFragment
}

View file

@ -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;
}