Magidoc

sellerAgreementDelete
Mutation

Deletes a seller agreement mapping.

Arguments

#

id

ID !
Non-null

ID of seller agreement mapping to delete

Response

#

Returns SellerAgreementDelete .

Example

#

    mutation ($id: ID!) {
  sellerAgreementDelete(id: $id) {
    agreementErrors {
      field
      message
      code
    }
    agreementSellers {
      id
      acknowledgedOn
      effectiveAt
    }
  }
}

  

3