15 lines
280 B
TypeScript
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}
|
|
`;
|