meteor-publish-composite icon indicating copy to clipboard operation
meteor-publish-composite copied to clipboard

Meteor.publishComposite provides a flexible way to publish a set of related documents from various collections using a reactive join

Results 21 meteor-publish-composite issues
Sort by recently updated
recently updated
newest added

Hello! I've run into a problem while using this package, and I didn't understand if it was intentional or a bug. Here is a code example from the project's documentation...

bug

So, I'm using TypeScript and I saw that there wasn't any declaration files, so I made one super fast, first time using this module so I'm not sure what to...

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 4.1.0 to 4.1.1. Commits 64735d2 v4.1.1 75a657d Fix potential ReDoS (#37) See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ansi-regex&package-manager=npm_and_yarn&previous-version=4.1.0&new-version=4.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this...

dependencies

Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.3. Changelog Sourced from async's changelog. v3.2.3 Fix bugs in comment parsing in autoInject. (#1767, #1780) v3.2.2 Fix potential prototype pollution exploit v3.2.1 Use queueMicrotask...

dependencies

I am using `johanbrook:publication-collector` for publication testing and noticed a subtle difference: If I am using a regular publication and the result set does not contain a document, publication-collector results...

bug
good first issue

Hi @reywood , Is there a way to debug why I'm not getting the joined data from the server ? This is just returning the results ``` Meteor.publishComposite('jobs', { find()...

Congratulations for the package. I have the following pattern: ``` javascript { find: function() { // Return a cursor containing top level documents }, children: [ { find: function(topLevelDocument) {...

This error only appears in my Cucumber log, seems not to affect my app in any way and does not reference any code in my app. Meteor-publish-composite seems to be...

bug

As you know, there are two methods to implement a publish function: 1. By returning a cursor (or an array of cursors) 2. By using `this.added()` / `this.changed()` / `this.removed()`,...

enhancement

Hi! Code in my app looks like this: ``` publishComposite('test', () => [{ find: () => Collection1.find({}), children: [{ // of course, in my app this cursor depends on document...