Need some help in mongo design by agentcooper

50a1c1f2651b478f8cb8bff34ad41515?size=52

I need to store lots of data and with each entry there is a Facebook user id to whom data belongs to. What is the best way to store this in #mongodb?

Is one collection with entries like this will be fine?

{
  "stuff": { ... },
  "id": "<facebook-user-id>"
}

Later I will need this do display his own stuff to the logged in user.