Change Customer default address using Graphql

Hello,

I am using Shopify graphql api for update the customer. I want to change customer default address using customer update api but unable to do that. Please help me to resolve this. I am using the follwoing graphql api:-

mutation {
customerUpdate(input: { id: “gid://shopify/Customer/5368342511815”, addresses: $add_newaddress }) {
customer {
id
}
}
}

parameters:

$add_newaddress = array(
‘firstName’ => ‘test’,
‘lastName’ => ‘’,
‘city’ => ‘Jaipur’,
‘country’ => ‘India’,
‘province’ => ‘’,
‘company’ => ‘’,
‘address1’ => ‘#House no. 211’,
‘address2’ => ‘’,
‘zip’ => ‘’,
‘phone’ => ‘’
);

Can anyone help me, how I make this address as default address