Derive connected components (islands) from the connection graph. Sends all connections to the container for BFS traversal. Without a seed, returns all islands. With a seed vertex, returns the single island containing it.
Input
application/jsonseed
string
Optional
Optional seed vertex. If provided, returns only the island containing this vertex. If omitted, returns all islands.
Output
application/jsonislands
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"properties": {
"seed": {
"type": "string",
"description": "Optional seed vertex. If provided, returns only the island containing this vertex. If omitted, returns all islands."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"islands"
],
"properties": {
"islands": {
"type": "array",
"items": {
"ref": "#island",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"description": "Derive connected components (islands) from the connection graph. Sends all connections to the container for BFS traversal. Without a seed, returns all islands. With a seed vertex, returns the single island containing it."
}