Interface MutationErrorInternal

interface MutationError {
    error: {
        description: string;
        items?: MutationErrorItem[];
        type: "mutationError";
    };
}

Properties

Properties

error: {
    description: string;
    items?: MutationErrorItem[];
    type: "mutationError";
}