Hi have some question any help.
I have a product type and a Company type. Company have an array of ids to it’s products and also Product have an Id reference to Company. so the question is with mongo prisma I can just store the Id in one side of relation not both side. so if I store ids in company then when I want to go from product to company I should search in products filed of company array to find if this company have the id of this product in its array and if we found then we return the id of company. and this cause a really huge performance problem. so how can I store the id in both side of relation not one side in mongodb prisma