Backbone-relational icon indicating copy to clipboard operation
Backbone-relational copied to clipboard

Get and set relations (one-to-one, one-to-many, many-to-one) for Backbone models

Results 71 Backbone-relational issues
Sort by recently updated
recently updated
newest added

This is the equivalent of #588 for the `next` branch.

After reading https://snyk.io/blog/open-source-npm-packages-colors-faker/ and https://snyk.io/blog/peacenotwar-malicious-npm-node-ipc-package-vulnerability/, I decided to scan all JavaScript repositories on my hard drive for direct and indirect dependencies on the affected packages, using the following terminal command:...

I have an extremely large application (over 40k lines of code) which heavily relies on backbone relational. Using backbone relational has certainly come in handy in many regards but we...

I am trying to use Backbone-relational with typescript. My sample code looks like this : `import * as Backbone from 'backbone'; import 'backbone-relational'; class Animal extends Backbone.RelationalModel{ constructor(options){ super(options); this.urlRoot...

This PR makes some fundamental changes to this library in how it exports itself and how some pieces work together. There is still some work to be done to further...

enhancement

I've started work on refactoring some of bbr to use Rollup + Babel with a more modular design. Overall this should help everyone out to make it more extensible and...

enhancement
PR in progress

I have a need for the use of compound keys. My first two stabs at shoe-horning these into BBR were not so great (adding uniqueids on the server, and altering...

enhancement

## Minimal case showing the problem Following is a test case that proves the equality in a minimalistic case: ```js const Child = Backbone.RelationalModel.extend(); const Children = Backbone.Collection.extend({ model: Child...

## Issue In cases of a model having a `HasMany` relation, when trying to fetch related models asynchronously using `getAsync()`, the set URL used (if your collection and backend supports...

enhancement

In the case of `collection.fetch({ reset: true })` on a collection with `subModelTypes` it seems that (at least in certain cases) `parse` gets called only on the supermodel rather than...

bug