mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
14 lines
216 B
TypeScript
14 lines
216 B
TypeScript
export const getEligibleShippingMethods = /* GraphQL */ `
|
|
query getEligibleShippingMethods {
|
|
eligibleShippingMethods {
|
|
id
|
|
name
|
|
description
|
|
price
|
|
priceWithTax
|
|
metadata
|
|
__typename
|
|
}
|
|
}
|
|
`
|