Magidoc

sellerAddressDelete
Mutation

Deletes an address.

Arguments

#

id

ID !
Non-null

ID of the address to delete.

Response

#

Returns SellerAddressDelete .

Example

#

    mutation ($id: ID!) {
  sellerAddressDelete(id: $id) {
    seller {
      id
      companyName
      slug
      status
      externalPayoutAccountId
      externalPayoutSource
      externalPayoutOnboardingUrl
      isMarketplaceSeller
      identification
      defaultCurrency
      fulfilledByMarketplace
      agreementAcknowledged
      canUseInStorefront
      pk
      externalPayoutStatus
      externalPayoutSchedule
      agreementDecisionReason
      storeDescription
      storeDescriptionPlainText
      approvedDate
      firstProductCreatedDate
      firstOrderPlacedDate
      fullfilledByMarketplace
      created
      updated
      accountSetupTasksAreDone
    }
    sellerErrors {
      field
      message
      code
    }
    address {
      id
      firstName
      lastName
      companyName
      streetAddress1
      streetAddress2
      city
      cityArea
      postalCode
      countryArea
      phone
      isDefaultShippingAddress
      isDefaultBillingAddress
    }
  }
}

  

3