Getting Children of a Node
To get a list of immediate children of a node, use GetChildrenAsync.
Given the nodes
var result = await client.GetChildrenAync(new GetChildrenRequest("/prefix"));Given the nodes
/prefix/a
/prefix/a/1
/prefix/a/2
/prefix/b/1
/prefix/cThe result.ChildrenNames would contain
a
b
cResult model also contains NodeStat Stat.
Last updated