Customer Register

customerRegister #

customerRegister(params: RegisterCustomerParams) RegisterCustomerResponse

Example #

mutation customerRegister($params: RegisterCustomerParams){
  customerRegister(params: $params) {
    customer {
      email
      phone
      firstName
      lastName
      profilePicture
      profilePictureFull
    }
    accessToken
  }
}

Try It Now