You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -398,7 +398,7 @@ The ORM abstraction will never be as performant compared to writing reducers by
398
398
399
399
### ORM
400
400
401
-
See the full documentation for ORM [here](http://redux-orm.github.io/redux-orm/global.html#ORM)
401
+
See the full documentation for ORM [here](https://redux-orm.github.io/redux-orm/api/ORM)
402
402
403
403
#### Instantiation:
404
404
@@ -420,7 +420,7 @@ const orm = new ORM({
420
420
421
421
### Model
422
422
423
-
See the full documentation for `Model`[here](http://redux-orm.github.io/redux-orm/Model.html).
423
+
See the full documentation for `Model`[here](https://redux-orm.github.io/redux-orm/api/Model).
424
424
425
425
**Instantiation**: Don't instantiate directly; use the class methods `create` and `upsert` as documented below.
426
426
@@ -433,7 +433,7 @@ See the full documentation for `Model` [here](http://redux-orm.github.io/redux-o
433
433
*`create(props)`: creates a new Model instance with `props`. If you don't supply an id, the new `id` will be `Math.max(...allOtherIds) + 1`.
434
434
*`upsert(props)`: either creates a new Model instance with `props` or, in case an instance with the same id already exists, updates that one - in other words it's **create or update** behaviour.
435
435
436
-
You will also have access to almost all [QuerySet instance methods](http://redux-orm.github.io/redux-orm/QuerySet.html) from the class object for convenience, including `where` and the like.
436
+
You will also have access to almost all [QuerySet instance methods](https://redux-orm.github.io/redux-orm/api/QuerySet) from the class object for convenience, including `where` and the like.
437
437
438
438
#### Instance Attributes:
439
439
*`ref`: returns a direct reference to the plain JavaScript object representing the Model instance in the store.
@@ -491,7 +491,7 @@ class Book extends Model {
491
491
}
492
492
```
493
493
494
-
See [fk](https://redux-orm.github.io/redux-orm/global.html#fk), [oneToOne](https://redux-orm.github.io/redux-orm/global.html#oneToOne), and [many](https://redux-orm.github.io/redux-orm/global.html#many) in the documentation for more information.
494
+
See [fk](https://redux-orm.github.io/redux-orm/api/module_fields#fk), [oneToOne](https://redux-orm.github.io/redux-orm/api/module_fields#fields.oneToOne), and [many](https://redux-orm.github.io/redux-orm/api/module_fields#fields.many) in the documentation for more information.
495
495
496
496
When declaring model classes, always remember to set the `modelName` property. It needs to be set explicitly, because running your code through a mangler would otherwise break functionality. The `modelName` will be used to resolve all related fields.
497
497
@@ -521,7 +521,7 @@ Book.options = {
521
521
522
522
### QuerySet
523
523
524
-
See the full documentation for `QuerySet`[here](http://redux-orm.github.io/redux-orm/QuerySet.html).
524
+
See the full documentation for `QuerySet`[here](https://redux-orm.github.io/redux-orm/api/QuerySet).
525
525
526
526
You can access all of these methods straight from a `Model` class, as if they were class methods on `Model`. In this case the functions will operate on a QuerySet that includes all the Model instances.
527
527
@@ -542,7 +542,7 @@ You can access all of these methods straight from a `Model` class, as if they we
542
542
543
543
### Session
544
544
545
-
See the full documentation for Session [here](http://redux-orm.github.io/redux-orm/Session.html)
545
+
See the full documentation for Session [here](https://redux-orm.github.io/redux-orm/api/Session)
0 commit comments