Directory structure:
└── thebigredgeek-apollo-resolvers/
├── README.md
├── CHANGELOG.md
├── LICENSE
├── Makefile
├── package.json
├── renovate.json
├── tsconfig.json
├── .babelrc
├── .editorconfig
├── .eslintrc
├── .npmignore
├── src/
│ ├── context.ts
│ ├── helper.ts
│ ├── index.ts
│ ├── promise.ts
│ ├── resolver.ts
│ └── util.ts
├── test/
│ ├── mocha.opts
│ ├── integration/
│ │ ├── context_spec.js
│ │ └── promise_spec.js
│ └── unit/
│ ├── context_spec.js
│ ├── helper_spec.js
│ ├── index_spec.js
│ ├── promise_spec.js
│ ├── resolver_spec.js
│ └── util_spec.js
└── .circleci/
└── config.yml