Get nodes by entry id
Log in to add to favouritesPage last updated 04 December 2020
Get all nodes that have a specified entry attached.
getByEntryId(entryId: string): Promise<Node[]>
Example
client.nodes.getByEntryId('273b8bfa-5dfe-409b-872d-95e6a72f6bc9')
  .then(result => {      
    console.log('API call result: ', result);              
  })
  .catch(error => {
    console.log('API call fetch error: ', error);      
});