This should be basic but i can’t find how to do it online. I have a collection that i am returning to a blaze template and i want the specific value to display:
there is only 1 document in this collection at any given time. this is because the collection is filtered at the server and sent back with only 1 document in it. in the collection i have the following:
_id: sd89f234kjfddsf
firstName: Joe
lastName: Smith
Like @vigorwebsolutions said, use findOne(). You should pass the query an id, but if you are saying that there is only ever that single document being published, it should work.