Files
commerce/framework/vendure/utils/queries/eligible-shipping-methods-query.ts
lytrankieio123 6b397fc153 feat: set shipping method
:%s
2021-10-21 10:20:17 +07:00

14 lines
216 B
TypeScript

export const getEligibleShippingMethods = /* GraphQL */ `
query getEligibleShippingMethods {
eligibleShippingMethods {
id
name
description
price
priceWithTax
metadata
__typename
}
}
`