View Issue Details

IDProjectCategoryView StatusLast Update
0007395GraphQL StorefrontGeneralpublic2022-12-23 11:27
Reportermichael_keiluweit Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status acknowledgedResolutionopen 
Product Versionv2.0.1 
Summary0007395: It's not possible to set the telephone number oxfon
DescriptionThe table oxuser has three fields for telephone numbers:
- oxfon
- oxprivfon
- oxmobfon

The mutation customerRegister doesn't offer to set those fields, but the mutation customerInvoiceAddressSet. Though it only allows to change the phone and mobile number.

Conclusion: Currently it's only possible to set oxprivfon and oxmobfon, but not oxfon.
Steps To Reproducehttps ://docs.oxid-esales.com/interfaces/graphql/en/latest/consuming/AdministrateCustomer.html#id7 (sorry, I had to add a whitspace, else I wasn't allowed to post the entry)
Additional Information
mutation customerInvoiceAddressSet {
     customerInvoiceAddressSet (
         invoiceAddress: {
             salutation: "{{salutation}}"
             firstName: "{{firstName}}"
             lastName: "{{lastName}}"
             company: "{{company}}"
             additionalInfo: "{{additionalInfo}}"
             street: "{{street}}"
             streetNumber: "{{streetNumber}}"
             zipCode: "{{zipCode}}"
             city: "{{city}}"
             countryId: "{{countryId}}"
             phone: "{{phone}}"
             mobile: "{{mobile}}"
             fax: "{{fax}}"
         }
     ) {
         salutation
         firstName
         lastName
         company
         additionalInfo
         street
         streetNumber
         zipCode
         city
         phone
         mobile
         fax
     }
 }



MySQL [oxid]> select oxfon, oxprivfon, oxmobfon from oxuser where oxusername = "[email protected]";
+-------+-----------+----------+
| oxfon | oxprivfon | oxmobfon |
+-------+-----------+----------+
|       | 123456    | 665      |
+-------+-----------+----------+
TagsNo tags attached.

Activities

QA

2022-12-23 11:27

administrator   ~0014970

-MK