mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
rename folder
This commit is contained in:
49
providers/saleor/utils/fragments/checkout-details.ts
Normal file
49
providers/saleor/utils/fragments/checkout-details.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
export const CheckoutDetails = /* GraphQL */ `
|
||||
fragment CheckoutDetails on Checkout {
|
||||
id
|
||||
token
|
||||
created
|
||||
totalPrice {
|
||||
currency
|
||||
gross {
|
||||
amount
|
||||
}
|
||||
}
|
||||
subtotalPrice {
|
||||
currency
|
||||
gross {
|
||||
amount
|
||||
}
|
||||
}
|
||||
|
||||
lines {
|
||||
id
|
||||
variant {
|
||||
id
|
||||
name
|
||||
sku
|
||||
product {
|
||||
name
|
||||
slug
|
||||
}
|
||||
media {
|
||||
url
|
||||
}
|
||||
pricing {
|
||||
price {
|
||||
gross {
|
||||
amount
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
quantity
|
||||
totalPrice {
|
||||
currency
|
||||
gross {
|
||||
amount
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
Reference in New Issue
Block a user