import { gql } from "@apollo/client";
export const shopSettingsUpdate = gql`
mutation ShopSettingsUpdate(
$shopSettingsInput: ShopSettingsInput!
$addressInput: AddressInput
) {
shopSettingsUpdate(input: $shopSettingsInput) {
errors {
...ShopError
}
shop {
...Shop
shopAddressUpdate(input: $addressInput) {
companyAddress {
...Address
`;