├── .babelrc ├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ └── computed.test.js.snap └── computed.test.js ├── example ├── index.js └── schema.js ├── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/computed.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/__tests__/__snapshots__/computed.test.js.snap -------------------------------------------------------------------------------- /__tests__/computed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/__tests__/computed.test.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/example/index.js -------------------------------------------------------------------------------- /example/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/example/schema.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-community/graphql-directive-computed-property/HEAD/yarn.lock --------------------------------------------------------------------------------