shellybranch2018

Results 1 comments of shellybranch2018

Here is my code: rootValue: { events: () => { Event.find().populate('creator') .then(events => { return events.map(event =>{ return { ...event._doc, _id: event.id, creator: {...event._doc.creator._doc, _id: event._id } }; }); }).catch(err...