I have a situation where I need to subscribe to the same collection twice. The two publishing methods in my server code are as follows:
Meteor.publish("selected_full_mycollection", function (important_id_list) { check(important_id_list, Match.Any);
My problem is that I do not see complete documents on the client side after I signed up for them. I think this is because they are overwritten by a method that publishes only short versions.
I do not want to clog my client memory with long arrays when I do not need them, but I want them to be available when I need it.
The short version is signed at startup. The full version is signed when the user visits a template that will unfold for a deeper understanding.
How can I properly manage this situation?
source share