You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: guides/v2.3/graphql/mutations/create-customer.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,16 @@ The `createCustomer` mutation returns the `CustomerOutput` object.
69
69
70
70
{% include graphql/customer-output.md %}
71
71
72
+
## Errors
73
+
74
+
Error | Description
75
+
--- | ---
76
+
`A customer with the same email address already exists in an associated website.` | Customer with a provided email in the `input`.`email` already exists.
77
+
`"Email" is not a valid email address.` | Value provided in the `input`.`email` has invalid email format.
78
+
`Field CustomerInput.email of required type String! was not provided` | The `input`.`email` attribute was omitted.
79
+
`Field "xxx" is not defined by type CustomerInput.` | The `input`.`xxx` is undefined attribute.
80
+
`Required parameters are missing: First Name` | The `input`.`firstname` attribute was omitted or contains an empty value.
0 commit comments