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

Reactive database layer with references, generators, triggers, migrations, etc.

Results 15 meteor-peerdb issues
Sort by recently updated
recently updated
newest added

For example, if a document `TestDocument` has multiple referencing `User` collection, and a particular `TestDocument` document is referencing one document in `User`, when the latter is removed, we should make...

It should not really happen, but because code for related keys and generators assumes only the latest versions of documents, we should not run observes on possible other versions. We...

Coffeescript examples are cool, but still a little esoteric. Please consider providing plain JS examples instead.

First of all, I want to say kudos for putting in the work to get a reactive layer on top of mongo (server-side) to handle declarative updates. Both collection2 and...

See examples: - https://github.com/fongandrew/meteor-find-and-modify - https://github.com/peerlibrary/meteor-directcollection It is important that it works correctly with EJSON and `transform` functions.

It seems a common data structure one would like is the following: ``` { related: { : { subfield: "Subfield value" }, : { ... } } } ``` So...

Currently abstract documents require their parents to be abstract as well. Not sure why this is required? It is pretty common that you might want to have a new document...

After adding velocity I get: `Error loading app files Reuse of a collection without replaceParent set Error: Reuse of a collection without replaceParent set`. This is not really surprising given...

`EJSON.clone` should return the `Document` instance, and not something in-between.

If a field of a document has an index defined and is embedded, we should make an index in a subdocument as well. This would allow one to do queries...