├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── firebase.json ├── functions ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── schema.graphql ├── server.ts ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.server.module.ts │ └── core │ │ ├── auth.service.spec.ts │ │ ├── auth.service.ts │ │ ├── dgraph.service.spec.ts │ │ ├── dgraph.service.ts │ │ ├── task.service.spec.ts │ │ ├── task.service.ts │ │ └── urql.module.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.server.ts ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.server.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/server.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/app.server.module.ts -------------------------------------------------------------------------------- /src/app/core/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/auth.service.ts -------------------------------------------------------------------------------- /src/app/core/dgraph.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/dgraph.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/dgraph.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/dgraph.service.ts -------------------------------------------------------------------------------- /src/app/core/task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/task.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/task.service.ts -------------------------------------------------------------------------------- /src/app/core/urql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/app/core/urql.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdgamble555/angular-fire-dgraph/HEAD/tslint.json --------------------------------------------------------------------------------