const nodeData = [
{ id: '0', name: 'Investment Capital' },
{ id: '1', name: 'Melissa Barner' }
]
const nodesSource = graphBuilder.createNodesSource(nodeData, 'id')
// create the label binding to the name property
nodesSource.nodeCreator.createLabelBinding((data) => data.name)