Find groups.

Parameters:
See dedicated page for more information.
FindConnectedGroups is a scripted action. Embedded code is accessible and customizable through this tab.
See dedicated page for more information.
The FindConnectedGroups action identifies nodes that belong to the same connected group in an undirected graph. It is commonly used in graph-based data processing, clustering, or network topology tasks to discover isolated or interlinked node communities.
Follow these steps to set up and run the FindConnectedGroups action:
Create Input Table
Use an InlineTable as input with the following columns:
idA: Node A (source node)idB: Node B (target node)idGroup: (Optional) Identifies which group an arc A–B belongs toExample:

Link the output of the InlineTable to the input of the FindConnectedGroups action.
In the FindConnectedGroups parameters tab:
idA: Select the column idAidB: Select the column idBidGroup: (Optional) Select the column idGroup if providedisNumberNodes: Enable this if idA and idB contain small integers (for performance optimization)In the Configuration tab, define how invalid or unexpected input should be handled:
abortabortset to lower integerabortabortabortabortset to lower integerExecute the pipeline. The result will be a list of node IDs with assigned group identifiers for each connected component.

idGroup column is optional and used to partition arcs into different groupings if needed.Group values are incrementally generated per connected component.