A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi, I'm wondering if it possible to change the return status of an order via the Shopify API. I want to be able to mark my order as "return_status: in-progress" and "return_status: returned". In the admin portal interface I just have to press a button. I have tried making the following Graphql request:
const returnReopen = await client2.query({
data: `mutation {
returnClose(input: {
id: "gid://shopify/Return/736428085",
status: "CLOSED",
order: {
id: "gid://shopify/Order/4341071380533",
returnStatus: "RETURNED",
__typename: "Order"
}
}) {
order {
id
}
}
}`,
});
Where I get the following error: "Field 'returnClose' doesn't exist on type 'Mutation".
Therefore I suppose it's not possible but I would very much appreciate it if you can fix it.
Thanks
hi there, do you have any information about how to change the status of the return?
thank you