Some checks failed
Build and Deploy / build (push) Has been cancelled
- Created BundleSelector component for selecting bundle options - Updated ProductDetail to show bundle options - Added bundle translations for all 4 locales - Added GraphQL query for bundle products - Updated TypeScript types for attributes - Saleor backend: created bundle products for all base products
94 lines
1.3 KiB
TypeScript
94 lines
1.3 KiB
TypeScript
import { gql } from "@apollo/client";
|
|
import { PRODUCT_VARIANT_FRAGMENT } from "./Variant";
|
|
|
|
export const PRODUCT_FRAGMENT = gql`
|
|
fragment ProductFragment on Product {
|
|
id
|
|
name
|
|
slug
|
|
description
|
|
seoTitle
|
|
seoDescription
|
|
translation(languageCode: $locale) {
|
|
id
|
|
name
|
|
slug
|
|
description
|
|
seoTitle
|
|
seoDescription
|
|
}
|
|
variants {
|
|
...ProductVariantFragment
|
|
}
|
|
media {
|
|
id
|
|
url
|
|
alt
|
|
type
|
|
}
|
|
category {
|
|
id
|
|
name
|
|
slug
|
|
}
|
|
metadata {
|
|
key
|
|
value
|
|
}
|
|
attributes {
|
|
attribute {
|
|
id
|
|
name
|
|
slug
|
|
}
|
|
values {
|
|
id
|
|
name
|
|
slug
|
|
}
|
|
}
|
|
}
|
|
${PRODUCT_VARIANT_FRAGMENT}
|
|
`;
|
|
|
|
export const PRODUCT_LIST_ITEM_FRAGMENT = gql`
|
|
fragment ProductListItemFragment on Product {
|
|
id
|
|
name
|
|
slug
|
|
description
|
|
translation(languageCode: $locale) {
|
|
id
|
|
name
|
|
slug
|
|
description
|
|
}
|
|
variants {
|
|
id
|
|
name
|
|
sku
|
|
quantityAvailable
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
onSale
|
|
discount {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
}
|
|
media {
|
|
id
|
|
url
|
|
alt
|
|
}
|
|
}
|
|
`;
|