mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 21:27:50 +00:00
14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
export const updateOrderMetafieldsMutation = /* GraphQL */ `
|
|
mutation updateOrderMetafields($input: OrderInput!) {
|
|
orderUpdate(input: $input) {
|
|
order {
|
|
id
|
|
}
|
|
userErrors {
|
|
message
|
|
field
|
|
}
|
|
}
|
|
}
|
|
`;
|