Skip to content
haveyaseen edited this page Jul 7, 2018 · 1 revision

Why does my selector return old results? Everything went fine until I started using selectors.

Please decouple Redux-ORM from your other code as much as possible. This means not using Model instances in e.g. React components. Have selectors return reference arrays by calling QuerySet#toRefArray instead of models QuerySet#toModelArray (see also #71 and #218).

Does Redux-ORM support TypeScript, Flow, ...?

At this moment we do not plan to officially support type annotations. See @types/redux-orm for community TypeScript definitions.

Does Redux-ORM support ImmutableJS?

No. Redux-ORM works with plain JavaScript objects and arrays only (see #171).