Interface ErrorMessage

interface ErrorMessage {
    id: string;
    payload: readonly GraphQLError[];
    type: "error";
}

Properties

Properties

id: string
payload: readonly GraphQLError[]
type: "error"