mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
18 lines
264 B
TypeScript
18 lines
264 B
TypeScript
export const activeCustomerQuery = /* GraphQL */ `
|
|
query activeCustomer {
|
|
activeCustomer {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
favorites{
|
|
items{
|
|
product{
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|