Meteor, MongoDB get part of array through subscription
I have a question about how to just get a certain element of an array using MongoDB and MeteorJS. I have the following schema for the user document: bankList:[ { id: "34567890987654345678", name: "xfgchjbkn", type: "credit" }, { id: "09876543456789098767" name: "65789876t8", type: "debit" } ] I first subscribe to only part of the fields in the array, specifically I gather a list of all the ids. Then I have an edit screen that should subscribe to all of the fields for a specific element in the array with a matching id. I do not want to expose the rest of the array just the single element.