Getting a list of all children
To get a list of all of a Node's children, simply use the values
property:
Node.values
This will return a list of strings, not Nodes.
If you have a child Node named "values", you will need to use the get
function to retrieve it. See here for more details.