GraphGists

This is a GraphGist Created to Demonstrate an Employee Database in a Hierarchical Format

The Model consists of the Following Levels

CEO who manages

CFO and CTO

CFO - Heads the Business Division

CTO - Heads the Technology Division

Business Division Consists of Three Departments

Finance

Sales

Marketing

Technology Division Consists of Two Departments

Tech Ops

Analytics

Full graph:

match (n) - [r] -> (m)
where ( n.name = 'Joel Silver'
or n.name = 'Hugo Weaving'
or n.name = 'Gary Sinise'
or n.name = 'Billy Crystal')
return  n,r,m

Graph result: