finish activate warranty step

This commit is contained in:
Chloe
2024-06-25 21:57:57 +07:00
parent 5385b5ed67
commit 2477fdf84e
13 changed files with 255 additions and 82 deletions

View File

@@ -18,9 +18,7 @@ export const createFileMutation = /* GraphQL */ `
fileCreate(files: $files) {
files {
fileStatus
... on MediaImage {
id
}
id
}
userErrors {
field

View File

@@ -0,0 +1,13 @@
export const updateOrderMetafieldsMutation = /* GraphQL */ `
mutation updateOrderMetafields($input: OrderInput!) {
orderUpdate(input: $input) {
order {
id
}
userErrors {
message
field
}
}
}
`;