Hi I want to create a way to specify roles and permission for an application.ie the api of my application.
I was wondering how to model it.
I was thinking something as simple as
(:User)-[:HAS_ROLE]->(:Role)
(:Role)-[:HAS_PERMISSION]->(:FEATURE)
takin...