I have an Events collection with these fields:
name: "Event 1",
description: "Description 1",
tags: [1, 4]
And in the Tags collection:
id: 1,
name: "Party Hard",
color: "red"
How can I concat these 2 collections and return something like this?
name: "Event 1",
description: "Description 1",
tags: [{
name: "Party Hard",
color: "red"
}, {
name: "Open bar",
color: "blue"
}]