Get the root node
Log in to add to favouritesGet the root node of the current project.
getRoot(): Promise<Node>
Returns
A Promise that will resolve with a Node object.
Example
client.nodes.getRoot()
.then(result => {
console.log('API call result: ', result);
})
.catch(error => {
console.log('API call fetch error: ', error);
});