So if I have two collections, example:
collections: users
, tokens
relationship: one user may have many tokens (one-to-many)
should I store ref.id
as userId
on tokens
collection or should I store the ref
itself as userRef
on tokens
collection?