LoginCustomerGqlResponse
Response of the customer login via a GraphQl mutation.
interface LoginCustomerGqlResponse {
login: {
customer?: {
entityId: number;
};
errors?: {
message: string;
path: string[];
}[];
result?: string;
};
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
login | Required | { customer?: { entityId: number; }; errors?: { message: string; path: string[]; }[]; result?: string; } |