Collection helpers in React containers sometimes missing

32 Views Asked by At

As far as I understand, collection helpers are implemented using transforms on documents. However, sometimes my helpers seem to be missing.

In foo.js I define:

owner() {
  const rel = FooBarRelations.findOne({
    fooId: this._id,
    isOwner: true,
  });

  if (rel) {
    return rel.barId;
  }
}

In my container. I subscribe to a composite publication (reywood:publish-composite) and when sub.ready() I fetch: fooDoc = Foo.findOne(fooId).

The returned document does not have owner property, sometimes. fooDoc.owner is not a function.

Any ideas?

1

There are 1 best solutions below

0
On

I discovered that I'm using low level publication code and set fooDoc.owner manually.

This causes fooDoc.owner to be a string sometimes and hence the error message is thrown.