shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
36 lines • 799 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const graphql_1 = require("../../../graphql");
const mutationCheckoutCreate = (0, graphql_1.buildMutation)('checkoutCreate', {
input: 'CheckoutCreateInput!',
}, [
`checkout {
completedAt
createdAt
currencyCode
email
id
order {
cancelReason
canceledAt
customerLocale
customerUrl
financialStatus
name
orderNumber
totalPrice {
amount
currencyCode
}
totalTax {
amount
currencyCode
}
}
orderStatusUrl
updatedAt
webUrl
}`,
]);
exports.default = mutationCheckoutCreate;
//# sourceMappingURL=mutationCheckoutCreate.js.map