OBJECT

CustomerUpdatePayload

link GraphQL Schema definition

1type CustomerUpdatePayload {
2
3# The updated customer object.
4customer: Customer
5
6# List of errors that occurred executing the mutation.
7userErrors: [UserError!]!
8
9}