Reduce query complexity lol

This commit is contained in:
Luis Alvarez 2020-10-13 07:21:05 -05:00
parent ee6b65725f
commit d2a22a50b3
2 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@ export const productInfoFragment = /* GraphQL */ `
name
path
brand {
name
entityId
}
description

View File

@ -1674,7 +1674,7 @@ export type ProductInfoFragment = { __typename?: 'Product' } & Pick<
Product,
'entityId' | 'name' | 'path' | 'description'
> & {
brand?: Maybe<{ __typename?: 'Brand' } & Pick<Brand, 'name' | 'entityId'>>
brand?: Maybe<{ __typename?: 'Brand' } & Pick<Brand, 'entityId'>>
prices?: Maybe<
{ __typename?: 'Prices' } & {
price: { __typename?: 'Money' } & Pick<Money, 'value' | 'currencyCode'>