CartBuyerIdentityUpdatePayload
Payload returned by the cartBuyerIdentityUpdate mutation.
Type Definition
type CartBuyerIdentityUpdatePayload {
cart: Cart
userErrors: [UserError]!
}Fields
Relationships
The CartBuyerIdentityUpdatePayload type is returned by the cartBuyerIdentityUpdate mutation. It contains a reference to the Cart object that was updated, as well as any UserError objects that occurred during the operation.
Example
{
cartBuyerIdentityUpdate(cartId: "eyJhbGciOiJIUzI1NiJ9...") {
cart {
id
}
userErrors {
field
message
}
}
}Implements
This type does not implement any interfaces.