New to neo4j so I wanted to ask a basic question about database schema design.
Assuming 2 object types
- Users
- Posts
Where users can like posts and there will be some very large amont of users and posts, should the object type be stored as a property of the node? Or, should I just create two indexes one for users, another for posts? Finally, should I just create a parent object for Users and a different one for Posts and they all have an "isA" relationship. I saw someone mention that would create a supernode penalty, which I'm not sure what that means.
I know that it always depends on the situation but what would be the right design in the most common case scenarios?