meteor-joins icon indicating copy to clipboard operation
meteor-joins copied to clipboard

Collection joins for Meteor

Results 18 meteor-joins issues
Sort by recently updated
recently updated
newest added

We are trying to join two collections as part of subscription and added check to subscribe the data only after user logged In. But after logout, If we query like...

Added the functionality to specify the name of the foreign document's field that is to query.

Hi, I tried to use `.join("CollectionName",....)` but it seems that it doesn't work. Only works if I inject the object collection. ### Summary: **This works:** _TripsPubs.js_ in server side ```...

At Meteor 1.7 [underscore was removed as dependency](https://github.com/meteor/meteor/pull/9596), if you try to migrate an application from 1.6.x to 1.7.x you will an error **Uncaught ReferenceError: _ is not defined** related...

Was hoping to simply join two documents without the need to specify every field in the foreign document. Is this possible?

Based on your example of a simple join between two collections: My foreign key is an array of several values (actually several Mongo _id fields). How can I use this...

Hi, I have a tag field with select2, user can select multiple tags and i store the array of ids. I want to join the values of tags, any suggestions...

Hi, I've some trouble to use this package ! I have 3 collections : Configurations: - _id -... - prizeId Prizes: - _id - ... Games: - _id - ......

I am trying to do a query with 2 and more joins, the problem I found is I when I load my router directly works, but when I jump from...

Is It necessary to use only id as foreign key in join or can I use other fields apart from id as foreign key to join collections for ex: Friends.join(Status,"FriendsEmail","status",["MessageText"])...