protected internal override void CollectAddedTxStateSnapshot()
        {
            if (_filterState == FilterState.NotInitialized)
            {
                StoreCursor.next();
                SetupFilterState();
            }

            NodeState nodeState = Read.txState().getNodeState(StoreCursor.originNodeReference());

            _addedRelationships = HasTxStateFilter() ? nodeState.GetAddedRelationships(_filterState.direction, _filterType) : nodeState.AddedRelationships;
        }