I am developing an API using Codeigniter and MongoDB. In this system I am saving the full name and _ID of users that the selected user is following.
What is best to do regarding the _Id? Store it as an object or as a string? If I store it as an object I need to convert it to string when echoing out followers otherwise the output looks strange.
My question is really. Is it ok to store the _Id as a string rather than an object? What is the downside of storing as string?
Thankful for all input!