mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
20 lines
434 B
TypeScript
20 lines
434 B
TypeScript
export const getUserOrderQuery = /* GraphQL */ `
|
|
query activeCustomer {
|
|
activeCustomer {
|
|
orders{
|
|
items{
|
|
lines{
|
|
productVariant{
|
|
name
|
|
}
|
|
quantity
|
|
}
|
|
total
|
|
state
|
|
code
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|