├── .firebaserc ├── .github └── workflows │ ├── publish.yml │ └── qa.yml ├── .gitignore ├── .mocharc.js ├── LICENSE ├── README.md ├── eslint.config.mjs ├── firebase.json ├── package.json ├── src ├── cache.ts ├── datasource.ts ├── helpers.ts └── index.ts ├── tests ├── integration.test.ts └── setup.ts ├── tsconfig.json └── tsconfig.production.json /.firebaserc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/qa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/.github/workflows/qa.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/.mocharc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/package.json -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/src/cache.ts -------------------------------------------------------------------------------- /src/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/src/datasource.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/tests/integration.test.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swantzter/apollo-datasource-firestore/HEAD/tsconfig.production.json --------------------------------------------------------------------------------