Order Update: Change/Remove Customer from order

I want to remove a customer from an order using GraphQL. Currently, I’m using the Admin REST API for this:

const { admin, session } = await authenticate.admin(request);

const order = new admin.rest.resources.Order({ session });

order.id = 450789469;
order.customer = null;
await order.save({ update: true });

This works fine using the REST API, but I can’t find the equivalent way to do this with GraphQL. Specifically, I tried the following mutation suggested by the Shopify docs assistant AI:

mutation UpdateOrderCustomer {
  orderUpdate(input: { id: "id", customer: null }) {
    order {
      id
      customer {
        id
      }
    }
    userErrors {
      field
      message
    }
  }
}

However, this doesn’t work because the customer parameter is not valid for the orderUpdate mutation.

How can I achieve this in GraphQL?

Currently, it is not possible to remove customer from order in the Shopify Admin GraphQL API.

So, When I am migrating from REST. How can I get this functionality?
Is there any workarounds?

You will need to keep using REST Admin API until GraphQL supports it.