mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
29 lines
486 B
TypeScript
29 lines
486 B
TypeScript
export const getFavoriteProductQuery = /* GraphQL */ `
|
|
query activeCustomer($options: FavoriteListOptions) {
|
|
activeCustomer {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
favorites(options: $options){
|
|
items{
|
|
product{
|
|
id
|
|
name
|
|
slug
|
|
assets{
|
|
source
|
|
preview
|
|
}
|
|
variants{
|
|
priceWithTax
|
|
currencyCode
|
|
}
|
|
}
|
|
}
|
|
totalItems
|
|
}
|
|
}
|
|
}
|
|
`
|