Skip to Content
ReferenceUtils

getOutgoers()

Source on GitHub 

This util is used to tell you what nodes, if any, are connected to the given node as the target of an edge.

import { getOutgoers } from '@xyflow/react'; const nodes = []; const edges = []; const outgoers = getOutgoers( { id: '1', position: { x: 0, y: 0 }, data: { label: 'node' } }, nodes, edges, );

Signature

Parameters:
NameTypeDefault
nodeNodeType | { id: string; }

The node to get the connected nodes from.

nodesNodeType[]

The array of all nodes.

edgesEdgeType[]

The array of all edges.

Returns:
Last updated on
Morty Proxy This is a proxified and sanitized view of the page, visit original site.