├── .circleci └── config.yml ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── __tests__ ├── fixtures │ └── queries │ │ └── derived-field.graphql ├── helpers.js ├── integration │ ├── __snapshots__ │ │ ├── queries.test.js.snap │ │ └── schema.test.js.snap │ ├── derivedFieldDefinitions.js │ ├── queries.test.js │ └── schema.test.js ├── plugin-test-data.sql ├── plugin-test-schema.sql └── printSchemaOrdered.js ├── index.js ├── package.json ├── scripts └── test ├── src └── DerivedFieldPlugin.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/fixtures/queries/derived-field.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/fixtures/queries/derived-field.graphql -------------------------------------------------------------------------------- /__tests__/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/helpers.js -------------------------------------------------------------------------------- /__tests__/integration/__snapshots__/queries.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/integration/__snapshots__/queries.test.js.snap -------------------------------------------------------------------------------- /__tests__/integration/__snapshots__/schema.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/integration/__snapshots__/schema.test.js.snap -------------------------------------------------------------------------------- /__tests__/integration/derivedFieldDefinitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/integration/derivedFieldDefinitions.js -------------------------------------------------------------------------------- /__tests__/integration/queries.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/integration/queries.test.js -------------------------------------------------------------------------------- /__tests__/integration/schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/integration/schema.test.js -------------------------------------------------------------------------------- /__tests__/plugin-test-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/plugin-test-data.sql -------------------------------------------------------------------------------- /__tests__/plugin-test-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/plugin-test-schema.sql -------------------------------------------------------------------------------- /__tests__/printSchemaOrdered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/__tests__/printSchemaOrdered.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/scripts/test -------------------------------------------------------------------------------- /src/DerivedFieldPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/src/DerivedFieldPlugin.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphile-contrib/postgraphile-plugin-derived-field/HEAD/yarn.lock --------------------------------------------------------------------------------