schon/storefront/app/graphql/fragments/wishlist.fragment.ts
2026-02-27 21:59:51 +03:00

15 lines
280 B
TypeScript

import { PRODUCT_FRAGMENT } from '@graphql/fragments/products.fragment.js';
export const WISHLIST_FRAGMENT = gql`
fragment Wishlist on WishlistType {
uuid
products {
edges {
node {
...Product
}
}
}
}
${PRODUCT_FRAGMENT}
`;