Alokai

LoginCustomerGqlResponse

Response of the customer login via a GraphQl mutation.

interface LoginCustomerGqlResponse {
	login: {
    customer?: {
      entityId: number;
    };
    errors?: {
      message: string;
      path: string[];
    }[];
    result?: string;
  };
}

Properties

NameRequiredTypeDescription
loginRequired{ customer?: { entityId: number; }; errors?: { message: string; path: string[]; }[]; result?: string; }

On this page