Hey, so this is the problem, I've two models Collection & Track. As you can tell, a collection can contain many tracks, but a track belongs to one collection
import mongoose, { Schema, model, SchemaType, SchemaTypes } from "mongoose";
// 1. Create an interface representing a document in MongoDB.
interface ICollection {
userId: string;
name: string;