export function isGraphReductionNode(obj: unknown): obj is GraphReductionNode {
    const otherNode = obj as GraphReductionNode;

    return (
        typeof otherNode !== 'undefined' &&