im trying to figure out if spine.js does support many to many relationships between models or if im on the better path implementing something myself by storing the related models id in an array on both sides.
examples in the documentation show pretty simple examples with a one to many situation only and even there im not getting smarter and to me it looks like the spine relation implementation is really limited. i still don't get how i could for example add existing instances to a relation rather than creating new ones.
the simplest example for what i need to do is the a typical blog with tags. Every Post can have many Tags and every Tag can have many Posts associated. When i create a Post i want to add new and/or existing Tags to the Post. and i need to be able to get all Posts related to a specific tag.
is there anybody able to bring me to the right path?