For example - a simple user can read its own data but an admin can read all users data.
Can I use a single Flux store, called 'UserStore', that will hold an array which will sometimes contain a single data object and sometimes multiple data objects (depend on the current logged in user permission), OR, this is a case for 2 separate stores (although, in the bottom line, it reads/writes to the same DB table)?
What do you guys suggest?