As discussed in this issue:
https://github.com/Lepozepo/meteor-publish-with-relations/issues/10
the use of objects were working.
mappings: [ { foreign_key: "aList.obj1.obj2.obj3.AnotherList.obj4.Reference", collection: SubThings } ] })
Only, it works unless tje object is the first element (root). Otherwise said, this would not work:
mappings: [ { foreign_key: "anObject.aList", collection: SubThings } ] })
because the first part is an Object and not a List.
This pull request fix this.
As discussed in this issue: https://github.com/Lepozepo/meteor-publish-with-relations/issues/10 the use of objects were working.
mappings: [ { foreign_key: "aList.obj1.obj2.obj3.AnotherList.obj4.Reference", collection: SubThings } ] })
Only, it works unless tje object is the first element (root). Otherwise said, this would not work:mappings: [ { foreign_key: "anObject.aList", collection: SubThings } ] })
because the first part is an Object and not a List. This pull request fix this.