├── .circleci └── config.yml ├── .codeclimate.yml ├── .dockerignore ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .husky ├── commit-msg ├── post-commit └── pre-commit ├── .lintstagedrc.js ├── .nvmrc ├── .prettierignore ├── .prettierrc.yml ├── .releaserc.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── apps └── .gitkeep ├── docker-compose.yml ├── docker ├── docker-entrypoint.d │ ├── 010-install.sh │ └── 020-ci.sh └── docker-entrypoint.sh ├── docs ├── .gitignore ├── articles │ ├── api │ │ ├── core │ │ │ ├── childentity-function.md │ │ │ ├── childentityselector-function.md │ │ │ ├── childrenentities-function.md │ │ │ ├── childrenentitiesselector-function.md │ │ │ ├── entity-state-selector.md │ │ │ ├── relatedentity-function.md │ │ │ ├── relatedentityselector-function.md │ │ │ ├── rootentities-function.md │ │ │ ├── rootentity-function.md │ │ │ ├── rootentityselector-function.md │ │ │ ├── to-factory-selector.md │ │ │ └── to-static-selector.md │ │ ├── graphql │ │ │ ├── mutations.md │ │ │ ├── queries.md │ │ │ └── subscriptions.md │ │ ├── rootentityflags-options.md │ │ ├── rxjs │ │ │ └── relationships.md │ │ └── types.md │ ├── extra │ │ ├── releasing-cache.md │ │ ├── selector-meta-information.md │ │ └── usage-with-createselector.md │ ├── guide │ │ ├── graphql │ │ │ ├── ngrx.md │ │ │ └── quick.md │ │ ├── ngrx-data.md │ │ ├── quick.md │ │ └── transform-entities.md │ ├── help │ │ ├── circular-dependency.md │ │ ├── typedef.md │ │ └── warnings.md │ ├── index.md │ └── normalization │ │ ├── graph.md │ │ ├── linear.md │ │ └── reducer.md ├── babel.config.js ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ └── css │ │ └── custom.css ├── static │ ├── .htaccess │ ├── .nojekyll │ ├── img │ │ └── favicon.ico │ └── robots.txt └── style-guide.md ├── e2e ├── a10 │ ├── .browserslistrc │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.ivy-off.js │ │ ├── protractor.ivy-on.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ ├── tsconfig.ivy-off.json │ │ └── tsconfig.ivy-on.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.ivy-off.json │ ├── tsconfig.ivy-on.json │ └── tsconfig.json ├── a11 │ ├── .browserslistrc │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.ivy-off.js │ │ ├── protractor.ivy-on.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ ├── tsconfig.ivy-off.json │ │ └── tsconfig.ivy-on.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.ivy-off.json │ ├── tsconfig.ivy-on.json │ └── tsconfig.json ├── a12 │ ├── .browserslistrc │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── test.ts │ └── tsconfig.json ├── a13 │ ├── .browserslistrc │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ └── test.ts │ └── tsconfig.json ├── a6 │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ └── tsconfig.json ├── a7 │ ├── .gitignore │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ └── tsconfig.json ├── a8 │ ├── .gitignore │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ └── tsconfig.json ├── a9 │ ├── .gitignore │ ├── LICENSE │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.ivy-off.js │ │ ├── protractor.ivy-on.js │ │ ├── src │ │ │ ├── app.po.ts │ │ │ ├── data.e2e-spec.ts │ │ │ └── entity.e2e-spec.ts │ │ ├── tsconfig.ivy-off.json │ │ └── tsconfig.ivy-on.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── data │ │ │ │ ├── data.component.html │ │ │ │ ├── data.component.ts │ │ │ │ ├── data.module.ts │ │ │ │ └── store │ │ │ │ │ ├── collections │ │ │ │ │ ├── fight.collection.ts │ │ │ │ │ ├── hero.collection.ts │ │ │ │ │ └── villain.collection.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── entity.service.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── selector.service.ts │ │ │ └── entity │ │ │ │ ├── entity.component.html │ │ │ │ ├── entity.component.ts │ │ │ │ ├── entity.module.ts │ │ │ │ └── store │ │ │ │ ├── address │ │ │ │ ├── address.actions.ts │ │ │ │ ├── address.model.ts │ │ │ │ └── address.reducer.ts │ │ │ │ ├── company │ │ │ │ ├── company.actions.ts │ │ │ │ ├── company.model.ts │ │ │ │ └── company.reducer.ts │ │ │ │ ├── entity.effects.ts │ │ │ │ ├── entity.service.ts │ │ │ │ ├── reducers.ts │ │ │ │ └── user │ │ │ │ ├── user.actions.ts │ │ │ │ ├── user.model.ts │ │ │ │ └── user.reducer.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.ivy-off.json │ ├── tsconfig.ivy-on.json │ └── tsconfig.json └── r7 │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── App.EntityClassMapTo.test.tsx │ ├── App.EntityClassSelf.test.tsx │ ├── App.EntityFunction.test.tsx │ ├── App.tsx │ ├── e2e │ │ └── to-graphql.test.ts │ ├── entity │ │ ├── EntityClassMapTo.tsx │ │ ├── EntityClassSelf.tsx │ │ ├── EntityFunction.tsx │ │ └── store │ │ │ ├── address │ │ │ ├── address.actions.ts │ │ │ ├── address.model.ts │ │ │ └── address.reducer.ts │ │ │ ├── company │ │ │ ├── company.actions.ts │ │ │ ├── company.model.ts │ │ │ └── company.reducer.ts │ │ │ ├── entity.effects.ts │ │ │ ├── entity.service.ts │ │ │ ├── reducers.ts │ │ │ └── user │ │ │ ├── user.actions.ts │ │ │ ├── user.model.ts │ │ │ └── user.reducer.ts │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts │ └── tsconfig.json ├── karma.conf.js ├── karma.ie.sh ├── libs ├── .gitkeep └── ngrx-entity-relationship │ ├── e2e │ ├── all-arguments-options-selectors.spec.ts │ ├── all-arguments-options-standard.spec.ts │ ├── custom-keys-for-entities.spec.ts │ ├── custom-keys-no-id.spec.ts │ ├── custom-keys.spec.ts │ ├── issues │ │ └── 596.spec.ts │ ├── reuse-of-nested-entities.spec.ts │ ├── select-by-ids.spec.ts │ └── to-graphql.spec.ts │ ├── graphql │ ├── ng-package.json │ └── src │ │ ├── lib │ │ ├── toGraphQL.ts │ │ ├── toMutation.ts │ │ ├── toQuery.ts │ │ ├── toSubscription.ts │ │ └── toTerm.ts │ │ └── public_api.ts │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── rxjs │ ├── ng-package.json │ └── src │ │ ├── operators │ │ └── relationships.ts │ │ └── public_api.ts │ ├── src │ ├── lib │ │ ├── childEntity.ts │ │ ├── childEntitySelector.ts │ │ ├── childrenEntities.ts │ │ ├── childrenEntitiesSelector.ts │ │ ├── relatedEntity.ts │ │ ├── relatedEntitySelector.ts │ │ ├── rootEntities.ts │ │ ├── rootEntity.ts │ │ ├── rootEntityFlags.ts │ │ ├── rootEntitySelector.ts │ │ ├── selectByIds.ts │ │ ├── stateKeys.ts │ │ ├── store │ │ │ ├── actions.ts │ │ │ ├── fromFlat.ts │ │ │ ├── fromGraph.ts │ │ │ ├── injectEntity.ts │ │ │ ├── ngrxEntityRelationshipReducer.ts │ │ │ └── patchState.ts │ │ ├── toFactorySelector.ts │ │ ├── toStaticSelector.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── public_api.ts │ └── test.ts │ ├── test │ ├── graphql │ │ └── src │ │ │ └── lib │ │ │ ├── toGraphQL.spec.ts │ │ │ ├── toMutation.spec.ts │ │ │ ├── toQuery.spec.ts │ │ │ ├── toSubscription.spec.ts │ │ │ └── toTerm.spec.ts │ ├── rxjs │ │ └── src │ │ │ └── operators │ │ │ └── relationships.spec.ts │ └── src │ │ └── lib │ │ ├── childEntity.spec.ts │ │ ├── childEntitySelector.spec.ts │ │ ├── childrenEntities.spec.ts │ │ ├── childrenEntitiesSelector.spec.ts │ │ ├── relatedEntity.spec.ts │ │ ├── relatedEntitySelector.spec.ts │ │ ├── rootEntities.spec.ts │ │ ├── rootEntity.spec.ts │ │ ├── rootEntitySelector.spec.ts │ │ ├── store │ │ ├── actions.spec.ts │ │ ├── fromFlat.spec.ts │ │ ├── fromGraph.spec.ts │ │ ├── injectEntity.spec.ts │ │ ├── ngrxEntityRelationshipReducer.spec.ts │ │ └── patchState.spec.ts │ │ ├── toFactorySelector.spec.ts │ │ ├── toStaticSelector.spec.ts │ │ └── utils.spec.ts │ ├── tsconfig.ie.spec.json │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── tslint.yml ├── nx.json ├── package.json ├── renovate.json ├── tools ├── generators │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.base.json ├── tslint.yml └── workspace.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: satanTime 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .angular 2 | .env 3 | dist 4 | node_modules 5 | test-reports 6 | tmp 7 | 8 | *.iml 9 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | git update-index --again 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.21.3 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.releaserc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/.releaserc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.d/010-install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | npm install 6 | -------------------------------------------------------------------------------- /docker/docker-entrypoint.d/020-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docker/docker-entrypoint.d/020-ci.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /.docusaurus 2 | /node_modules 3 | -------------------------------------------------------------------------------- /docs/articles/api/core/childentity-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/childentity-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/childentityselector-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/childentityselector-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/childrenentities-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/childrenentities-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/childrenentitiesselector-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/childrenentitiesselector-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/entity-state-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/entity-state-selector.md -------------------------------------------------------------------------------- /docs/articles/api/core/relatedentity-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/relatedentity-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/relatedentityselector-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/relatedentityselector-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/rootentities-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/rootentities-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/rootentity-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/rootentity-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/rootentityselector-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/rootentityselector-function.md -------------------------------------------------------------------------------- /docs/articles/api/core/to-factory-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/to-factory-selector.md -------------------------------------------------------------------------------- /docs/articles/api/core/to-static-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/core/to-static-selector.md -------------------------------------------------------------------------------- /docs/articles/api/graphql/mutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/graphql/mutations.md -------------------------------------------------------------------------------- /docs/articles/api/graphql/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/graphql/queries.md -------------------------------------------------------------------------------- /docs/articles/api/graphql/subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/graphql/subscriptions.md -------------------------------------------------------------------------------- /docs/articles/api/rootentityflags-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/rootentityflags-options.md -------------------------------------------------------------------------------- /docs/articles/api/rxjs/relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/rxjs/relationships.md -------------------------------------------------------------------------------- /docs/articles/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/api/types.md -------------------------------------------------------------------------------- /docs/articles/extra/releasing-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/extra/releasing-cache.md -------------------------------------------------------------------------------- /docs/articles/extra/selector-meta-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/extra/selector-meta-information.md -------------------------------------------------------------------------------- /docs/articles/extra/usage-with-createselector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/extra/usage-with-createselector.md -------------------------------------------------------------------------------- /docs/articles/guide/graphql/ngrx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/guide/graphql/ngrx.md -------------------------------------------------------------------------------- /docs/articles/guide/graphql/quick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/guide/graphql/quick.md -------------------------------------------------------------------------------- /docs/articles/guide/ngrx-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/guide/ngrx-data.md -------------------------------------------------------------------------------- /docs/articles/guide/quick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/guide/quick.md -------------------------------------------------------------------------------- /docs/articles/guide/transform-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/guide/transform-entities.md -------------------------------------------------------------------------------- /docs/articles/help/circular-dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/help/circular-dependency.md -------------------------------------------------------------------------------- /docs/articles/help/typedef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/help/typedef.md -------------------------------------------------------------------------------- /docs/articles/help/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/help/warnings.md -------------------------------------------------------------------------------- /docs/articles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/index.md -------------------------------------------------------------------------------- /docs/articles/normalization/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/normalization/graph.md -------------------------------------------------------------------------------- /docs/articles/normalization/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/normalization/linear.md -------------------------------------------------------------------------------- /docs/articles/normalization/reducer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/articles/normalization/reducer.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/static/.htaccess -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/static/robots.txt -------------------------------------------------------------------------------- /docs/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/docs/style-guide.md -------------------------------------------------------------------------------- /e2e/a10/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/.browserslistrc -------------------------------------------------------------------------------- /e2e/a10/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a10/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/angular.json -------------------------------------------------------------------------------- /e2e/a10/e2e/protractor.ivy-off.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/protractor.ivy-off.js -------------------------------------------------------------------------------- /e2e/a10/e2e/protractor.ivy-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/protractor.ivy-on.js -------------------------------------------------------------------------------- /e2e/a10/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a10/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a10/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a10/e2e/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a10/e2e/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/e2e/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a10/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/karma.conf.js -------------------------------------------------------------------------------- /e2e/a10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/package-lock.json -------------------------------------------------------------------------------- /e2e/a10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/package.json -------------------------------------------------------------------------------- /e2e/a10/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a10/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a10/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a10/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a10/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a10/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a10/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a10/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a10/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/index.html -------------------------------------------------------------------------------- /e2e/a10/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/main.ts -------------------------------------------------------------------------------- /e2e/a10/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a10/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/styles.css -------------------------------------------------------------------------------- /e2e/a10/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/src/test.ts -------------------------------------------------------------------------------- /e2e/a10/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a10/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a10/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a10/tsconfig.json -------------------------------------------------------------------------------- /e2e/a11/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/.browserslistrc -------------------------------------------------------------------------------- /e2e/a11/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a11/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/angular.json -------------------------------------------------------------------------------- /e2e/a11/e2e/protractor.ivy-off.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/protractor.ivy-off.js -------------------------------------------------------------------------------- /e2e/a11/e2e/protractor.ivy-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/protractor.ivy-on.js -------------------------------------------------------------------------------- /e2e/a11/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a11/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a11/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a11/e2e/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a11/e2e/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/e2e/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a11/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/karma.conf.js -------------------------------------------------------------------------------- /e2e/a11/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/package-lock.json -------------------------------------------------------------------------------- /e2e/a11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/package.json -------------------------------------------------------------------------------- /e2e/a11/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a11/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a11/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a11/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a11/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a11/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a11/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a11/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a11/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/index.html -------------------------------------------------------------------------------- /e2e/a11/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/main.ts -------------------------------------------------------------------------------- /e2e/a11/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a11/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/styles.css -------------------------------------------------------------------------------- /e2e/a11/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/src/test.ts -------------------------------------------------------------------------------- /e2e/a11/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a11/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a11/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a11/tsconfig.json -------------------------------------------------------------------------------- /e2e/a12/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/.browserslistrc -------------------------------------------------------------------------------- /e2e/a12/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a12/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/angular.json -------------------------------------------------------------------------------- /e2e/a12/e2e/protractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/e2e/protractor.js -------------------------------------------------------------------------------- /e2e/a12/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a12/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a12/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a12/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/a12/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/karma.conf.js -------------------------------------------------------------------------------- /e2e/a12/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/package-lock.json -------------------------------------------------------------------------------- /e2e/a12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/package.json -------------------------------------------------------------------------------- /e2e/a12/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a12/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a12/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a12/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a12/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/index.html -------------------------------------------------------------------------------- /e2e/a12/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/main.ts -------------------------------------------------------------------------------- /e2e/a12/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a12/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/src/test.ts -------------------------------------------------------------------------------- /e2e/a12/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a12/tsconfig.json -------------------------------------------------------------------------------- /e2e/a13/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/.browserslistrc -------------------------------------------------------------------------------- /e2e/a13/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a13/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/angular.json -------------------------------------------------------------------------------- /e2e/a13/e2e/protractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/e2e/protractor.js -------------------------------------------------------------------------------- /e2e/a13/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a13/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a13/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a13/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/a13/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/karma.conf.js -------------------------------------------------------------------------------- /e2e/a13/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/package-lock.json -------------------------------------------------------------------------------- /e2e/a13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/package.json -------------------------------------------------------------------------------- /e2e/a13/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a13/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a13/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a13/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a13/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/index.html -------------------------------------------------------------------------------- /e2e/a13/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/main.ts -------------------------------------------------------------------------------- /e2e/a13/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a13/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/src/test.ts -------------------------------------------------------------------------------- /e2e/a13/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a13/tsconfig.json -------------------------------------------------------------------------------- /e2e/a6/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a6/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/angular.json -------------------------------------------------------------------------------- /e2e/a6/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/a6/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a6/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a6/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/a6/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/karma.conf.js -------------------------------------------------------------------------------- /e2e/a6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/package-lock.json -------------------------------------------------------------------------------- /e2e/a6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/package.json -------------------------------------------------------------------------------- /e2e/a6/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a6/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a6/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a6/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a6/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/browserslist -------------------------------------------------------------------------------- /e2e/a6/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a6/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a6/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a6/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/index.html -------------------------------------------------------------------------------- /e2e/a6/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/main.ts -------------------------------------------------------------------------------- /e2e/a6/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a6/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/styles.css -------------------------------------------------------------------------------- /e2e/a6/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/src/test.ts -------------------------------------------------------------------------------- /e2e/a6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a6/tsconfig.json -------------------------------------------------------------------------------- /e2e/a7/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a7/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/angular.json -------------------------------------------------------------------------------- /e2e/a7/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/a7/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a7/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a7/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/a7/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/karma.conf.js -------------------------------------------------------------------------------- /e2e/a7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/package-lock.json -------------------------------------------------------------------------------- /e2e/a7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/package.json -------------------------------------------------------------------------------- /e2e/a7/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a7/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a7/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a7/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a7/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/browserslist -------------------------------------------------------------------------------- /e2e/a7/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a7/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a7/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a7/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/index.html -------------------------------------------------------------------------------- /e2e/a7/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/main.ts -------------------------------------------------------------------------------- /e2e/a7/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a7/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/styles.css -------------------------------------------------------------------------------- /e2e/a7/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/src/test.ts -------------------------------------------------------------------------------- /e2e/a7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a7/tsconfig.json -------------------------------------------------------------------------------- /e2e/a8/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a8/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/angular.json -------------------------------------------------------------------------------- /e2e/a8/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/browserslist -------------------------------------------------------------------------------- /e2e/a8/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/a8/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a8/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a8/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a8/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/a8/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/karma.conf.js -------------------------------------------------------------------------------- /e2e/a8/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/package-lock.json -------------------------------------------------------------------------------- /e2e/a8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/package.json -------------------------------------------------------------------------------- /e2e/a8/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a8/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a8/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a8/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a8/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a8/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a8/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a8/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a8/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/index.html -------------------------------------------------------------------------------- /e2e/a8/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/main.ts -------------------------------------------------------------------------------- /e2e/a8/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a8/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/styles.css -------------------------------------------------------------------------------- /e2e/a8/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/src/test.ts -------------------------------------------------------------------------------- /e2e/a8/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a8/tsconfig.json -------------------------------------------------------------------------------- /e2e/a9/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /src/test 3 | -------------------------------------------------------------------------------- /e2e/a9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/LICENSE -------------------------------------------------------------------------------- /e2e/a9/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/angular.json -------------------------------------------------------------------------------- /e2e/a9/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/browserslist -------------------------------------------------------------------------------- /e2e/a9/e2e/protractor.ivy-off.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/protractor.ivy-off.js -------------------------------------------------------------------------------- /e2e/a9/e2e/protractor.ivy-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/protractor.ivy-on.js -------------------------------------------------------------------------------- /e2e/a9/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/a9/e2e/src/data.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/src/data.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a9/e2e/src/entity.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/src/entity.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/a9/e2e/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a9/e2e/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/e2e/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a9/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/karma.conf.js -------------------------------------------------------------------------------- /e2e/a9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/package-lock.json -------------------------------------------------------------------------------- /e2e/a9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/package.json -------------------------------------------------------------------------------- /e2e/a9/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/app.component.html -------------------------------------------------------------------------------- /e2e/a9/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/app.component.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/app.module.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/data.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/data.component.html -------------------------------------------------------------------------------- /e2e/a9/src/app/data/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/data.component.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/data.module.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/collections/fight.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/collections/fight.collection.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/collections/hero.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/collections/hero.collection.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/collections/villain.collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/collections/villain.collection.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/config.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/models.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/data/store/selector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/data/store/selector.service.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/entity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/entity.component.html -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/entity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/entity.component.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/entity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/entity.module.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/a9/src/app/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/app/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/a9/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/a9/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/a9/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/environments/environment.ts -------------------------------------------------------------------------------- /e2e/a9/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/favicon.ico -------------------------------------------------------------------------------- /e2e/a9/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/index.html -------------------------------------------------------------------------------- /e2e/a9/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/main.ts -------------------------------------------------------------------------------- /e2e/a9/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/a9/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/styles.css -------------------------------------------------------------------------------- /e2e/a9/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/src/test.ts -------------------------------------------------------------------------------- /e2e/a9/tsconfig.ivy-off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/tsconfig.ivy-off.json -------------------------------------------------------------------------------- /e2e/a9/tsconfig.ivy-on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/tsconfig.ivy-on.json -------------------------------------------------------------------------------- /e2e/a9/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/a9/tsconfig.json -------------------------------------------------------------------------------- /e2e/r7/.gitignore: -------------------------------------------------------------------------------- 1 | /.eslintcache 2 | /build 3 | /node_modules 4 | -------------------------------------------------------------------------------- /e2e/r7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/package-lock.json -------------------------------------------------------------------------------- /e2e/r7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/package.json -------------------------------------------------------------------------------- /e2e/r7/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/public/index.html -------------------------------------------------------------------------------- /e2e/r7/src/App.EntityClassMapTo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/App.EntityClassMapTo.test.tsx -------------------------------------------------------------------------------- /e2e/r7/src/App.EntityClassSelf.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/App.EntityClassSelf.test.tsx -------------------------------------------------------------------------------- /e2e/r7/src/App.EntityFunction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/App.EntityFunction.test.tsx -------------------------------------------------------------------------------- /e2e/r7/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/App.tsx -------------------------------------------------------------------------------- /e2e/r7/src/e2e/to-graphql.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/e2e/to-graphql.test.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/EntityClassMapTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/EntityClassMapTo.tsx -------------------------------------------------------------------------------- /e2e/r7/src/entity/EntityClassSelf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/EntityClassSelf.tsx -------------------------------------------------------------------------------- /e2e/r7/src/entity/EntityFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/EntityFunction.tsx -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/address/address.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/address/address.actions.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/address/address.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/address/address.model.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/address/address.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/address/address.reducer.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/company/company.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/company/company.actions.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/company/company.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/company/company.model.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/company/company.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/company/company.reducer.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/entity.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/entity.effects.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/entity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/entity.service.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/reducers.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/user/user.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/user/user.actions.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/user/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/user/user.model.ts -------------------------------------------------------------------------------- /e2e/r7/src/entity/store/user/user.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/entity/store/user/user.reducer.ts -------------------------------------------------------------------------------- /e2e/r7/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/index.tsx -------------------------------------------------------------------------------- /e2e/r7/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /e2e/r7/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/reportWebVitals.ts -------------------------------------------------------------------------------- /e2e/r7/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/src/setupTests.ts -------------------------------------------------------------------------------- /e2e/r7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/e2e/r7/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.ie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/karma.ie.sh -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/all-arguments-options-selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/all-arguments-options-selectors.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/all-arguments-options-standard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/all-arguments-options-standard.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/custom-keys-for-entities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/custom-keys-for-entities.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/custom-keys-no-id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/custom-keys-no-id.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/custom-keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/custom-keys.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/issues/596.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/issues/596.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/reuse-of-nested-entities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/reuse-of-nested-entities.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/select-by-ids.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/select-by-ids.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/e2e/to-graphql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/e2e/to-graphql.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/ng-package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/lib/toGraphQL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/lib/toGraphQL.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/lib/toMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/lib/toMutation.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/lib/toQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/lib/toQuery.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/lib/toSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/lib/toSubscription.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/lib/toTerm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/lib/toTerm.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/graphql/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/graphql/src/public_api.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/karma.conf.js -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/ng-package.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/package.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/rxjs/ng-package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/rxjs/src/operators/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/rxjs/src/operators/relationships.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/rxjs/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/rxjs/src/public_api.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/childEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/childEntity.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/childEntitySelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/childEntitySelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/childrenEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/childrenEntities.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/childrenEntitiesSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/childrenEntitiesSelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/relatedEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/relatedEntity.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/relatedEntitySelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/relatedEntitySelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/rootEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/rootEntities.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/rootEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/rootEntity.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/rootEntityFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/rootEntityFlags.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/rootEntitySelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/rootEntitySelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/selectByIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/selectByIds.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/stateKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/stateKeys.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/actions.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/fromFlat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/fromFlat.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/fromGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/fromGraph.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/injectEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/injectEntity.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/ngrxEntityRelationshipReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/ngrxEntityRelationshipReducer.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/store/patchState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/store/patchState.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/toFactorySelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/toFactorySelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/toStaticSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/toStaticSelector.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/types.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/public_api.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/src/test.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/graphql/src/lib/toGraphQL.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/graphql/src/lib/toGraphQL.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/graphql/src/lib/toMutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/graphql/src/lib/toMutation.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/graphql/src/lib/toQuery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/graphql/src/lib/toQuery.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/graphql/src/lib/toSubscription.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/graphql/src/lib/toSubscription.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/graphql/src/lib/toTerm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/graphql/src/lib/toTerm.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/rxjs/src/operators/relationships.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/rxjs/src/operators/relationships.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/childEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/childEntity.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/childEntitySelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/childEntitySelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/childrenEntities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/childrenEntities.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/childrenEntitiesSelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/childrenEntitiesSelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/relatedEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/relatedEntity.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/relatedEntitySelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/relatedEntitySelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/rootEntities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/rootEntities.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/rootEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/rootEntity.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/rootEntitySelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/rootEntitySelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/actions.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/fromFlat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/fromFlat.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/fromGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/fromGraph.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/injectEntity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/injectEntity.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/ngrxEntityRelationshipReducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/ngrxEntityRelationshipReducer.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/store/patchState.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/store/patchState.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/toFactorySelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/toFactorySelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/toStaticSelector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/toStaticSelector.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/test/src/lib/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/test/src/lib/utils.spec.ts -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tsconfig.ie.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tsconfig.ie.spec.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tsconfig.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/ngrx-entity-relationship/tslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/libs/ngrx-entity-relationship/tslint.yml -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/renovate.json -------------------------------------------------------------------------------- /tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/tslint.yml -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satanTime/ngrx-entity-relationship/HEAD/workspace.json --------------------------------------------------------------------------------