CreateCustomerPayload
This response represents the payload returned after successfully creating a new customer record. It contains a single field customer which is a Customer object representing the newly created customer record.
type CreateCustomerPayload {
  customer: Customer!
}
Fields
CreateCustomerPayload.customer ● Customer! non-null object
The customer record created by the create customer mutation.
Returned by
createCustomer  mutation