Skip to content

Commit 29344eb

Browse files
soroushmhaveyaseen
authored andcommitted
Document link update (redux-orm#397)
1 parent ab0479d commit 29344eb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ The ORM abstraction will never be as performant compared to writing reducers by
398398

399399
### ORM
400400

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)
402402

403403
#### Instantiation:
404404

@@ -420,7 +420,7 @@ const orm = new ORM({
420420

421421
### Model
422422

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).
424424

425425
**Instantiation**: Don't instantiate directly; use the class methods `create` and `upsert` as documented below.
426426

@@ -433,7 +433,7 @@ See the full documentation for `Model` [here](http://redux-orm.github.io/redux-o
433433
* `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`.
434434
* `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.
435435

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.
437437

438438
#### Instance Attributes:
439439
* `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 {
491491
}
492492
```
493493

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.
495495

496496
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.
497497

@@ -521,7 +521,7 @@ Book.options = {
521521

522522
### QuerySet
523523

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).
525525

526526
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.
527527

@@ -542,7 +542,7 @@ You can access all of these methods straight from a `Model` class, as if they we
542542

543543
### Session
544544

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)
546546

547547
#### Instantiation:
548548

0 commit comments

Comments
 (0)