1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-25 11:11:24 +00:00
Files
.github
.vscode
app
components
contexts
fonts
hooks
lib
shopify
fragments
address.ts
cart.ts
customer-address.ts
customer-details.ts
image.ts
line-item.ts
order-card.ts
order-metafields.ts
order-transaction.ts
order.ts
price.ts
product.ts
seo.ts
mutations
queries
auth.ts
index.ts
types.ts
constants.ts
styles.ts
type-guards.ts
types.ts
utils.ts
public
.env.example
.eslintrc.js
.gitignore
.nvmrc
.prettierignore
README.md
license.md
middleware.ts
next.config.js
package.json
pnpm-lock.yaml
postcss.config.js
prettier.config.js
tailwind.config.js
tsconfig.json
commerce/lib/shopify/fragments/order-metafields.ts
2024-07-08 17:48:27 +03:00

84 lines
2.1 KiB
TypeScript

const orderMetafieldsFragment = /* GraphQL */ `
fragment OrderMetafields on Order {
warrantyStatus: metafield(namespace: "custom", key: "warranty_status") {
value
id
key
}
warrantyActivationDeadline: metafield(
namespace: "custom"
key: "warranty_activation_deadline"
) {
value
id
key
}
warrantyActivationOdometer: metafield(
namespace: "custom"
key: "warranty_activation_odometer"
) {
value
id
key
}
warrantyActivationInstallation: metafield(
namespace: "custom"
key: "warranty_activation_installation"
) {
value
id
key
}
warrantyActivationSelfInstall: metafield(
namespace: "custom"
key: "warranty_activation_self_install"
) {
value
id
key
}
warrantyActivationVIN: metafield(namespace: "custom", key: "warranty_activation_vin") {
value
id
key
}
warrantyActivationMileage: metafield(namespace: "custom", key: "warranty_activation_mileage") {
value
id
key
}
orderConfirmation: metafield(namespace: "custom", key: "customer_confirmation") {
value
}
coreReturnStatus: metafield(namespace: "custom", key: "core_status") {
value
}
coreReturnDeadline: metafield(namespace: "custom", key: "core_return_deadline") {
value
}
coreReturnName: metafield(namespace: "custom", key: "core_return_name") {
value
}
coreReturnEmail: metafield(namespace: "custom", key: "core_return_email") {
value
}
coreReturnPhone: metafield(namespace: "custom", key: "core_return_phone") {
value
}
coreReturnAddress: metafield(namespace: "custom", key: "core_return_address") {
value
}
coreReturnCity: metafield(namespace: "custom", key: "core_return_city") {
value
}
coreReturnState: metafield(namespace: "custom", key: "core_return_state") {
value
}
coreReturnZip: metafield(namespace: "custom", key: "core_return_zip") {
value
}
}
`;
export default orderMetafieldsFragment;